class Google::Apis::CoordinateV1::CustomField
Custom field.
Attributes
custom_field_id[RW]
Custom field id. Corresponds to the JSON property `customFieldId` @return [String]
kind[RW]
Identifies this object as a custom field. Corresponds to the JSON property `kind` @return [String]
value[RW]
Custom field value. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/coordinate_v1/classes.rb, line 44 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/coordinate_v1/classes.rb, line 49 def update!(**args) @custom_field_id = args[:custom_field_id] if args.key?(:custom_field_id) @kind = args[:kind] if args.key?(:kind) @value = args[:value] if args.key?(:value) end