Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaProperty
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaProperty
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Message type for schema property
Instance Attribute Summary collapse
-
#create_time ⇒ String
Creation time of the field Corresponds to the JSON property
createTime. -
#custom ⇒ String
Custom is a flag signifying if the field was provided as part of the standard dataset or a custom field created by the customer Corresponds to the JSON property
custom. -
#type ⇒ String
Data type of the field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1SchemaSchemaProperty
constructor
A new instance of GoogleCloudApigeeV1SchemaSchemaProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1SchemaSchemaProperty
Returns a new instance of GoogleCloudApigeeV1SchemaSchemaProperty.
5481 5482 5483 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5481 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Creation time of the field
Corresponds to the JSON property createTime
5468 5469 5470 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5468 def create_time @create_time end |
#custom ⇒ String
Custom is a flag signifying if the field was provided as part of the standard
dataset or a custom field created by the customer
Corresponds to the JSON property custom
5474 5475 5476 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5474 def custom @custom end |
#type ⇒ String
Data type of the field.
Corresponds to the JSON property type
5479 5480 5481 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5479 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5486 5487 5488 5489 5490 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5486 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @custom = args[:custom] if args.key?(:custom) @type = args[:type] if args.key?(:type) end |