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.
5536 5537 5538 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5536 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Creation time of the field
Corresponds to the JSON property createTime
5523 5524 5525 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5523 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
5529 5530 5531 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5529 def custom @custom end |
#type ⇒ String
Data type of the field.
Corresponds to the JSON property type
5534 5535 5536 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5534 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5541 5542 5543 5544 5545 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5541 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 |