class Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaProperty

Properties for the schema field.

Attributes

create_time[RW]

Time the field was created in RFC3339 string form. For example: `2016-02-26T10: 23:09.592Z`. Corresponds to the JSON property `createTime` @return [String]

custom[RW]

Flag that specifies whether the field is standard in the dataset or a custom field created by the customer. `true` indicates that it is a custom field. Corresponds to the JSON property `custom` @return [String]

type[RW]

Data type of the field. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 6484
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 6489
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