Class: Google::Apis::DriveV3::LabelField
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::LabelField
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/representations.rb
Overview
Representation of field, which is a typed key-value pair.
Instance Attribute Summary collapse
-
#date_string ⇒ Array<Date>
Only present if valueType is dateString.
-
#id ⇒ String
The identifier of this label field.
-
#integer ⇒ Array<Fixnum>
Only present if
valueTypeisinteger. -
#kind ⇒ String
This is always drive#labelField.
-
#selection ⇒ Array<String>
Only present if
valueTypeisselectionCorresponds to the JSON propertyselection. -
#text ⇒ Array<String>
Only present if
valueTypeistext. -
#user ⇒ Array<Google::Apis::DriveV3::User>
Only present if
valueTypeisuser. -
#value_type ⇒ String
The field type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LabelField
constructor
A new instance of LabelField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LabelField
Returns a new instance of LabelField.
3225 3226 3227 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3225 def initialize(**args) update!(**args) end |
Instance Attribute Details
#date_string ⇒ Array<Date>
Only present if valueType is dateString. RFC 3339 formatted date: YYYY-MM-DD.
Corresponds to the JSON property dateString
3186 3187 3188 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3186 def date_string @date_string end |
#id ⇒ String
The identifier of this label field.
Corresponds to the JSON property id
3191 3192 3193 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3191 def id @id end |
#integer ⇒ Array<Fixnum>
Only present if valueType is integer.
Corresponds to the JSON property integer
3196 3197 3198 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3196 def integer @integer end |
#kind ⇒ String
This is always drive#labelField.
Corresponds to the JSON property kind
3201 3202 3203 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3201 def kind @kind end |
#selection ⇒ Array<String>
Only present if valueType is selection
Corresponds to the JSON property selection
3206 3207 3208 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3206 def selection @selection end |
#text ⇒ Array<String>
Only present if valueType is text.
Corresponds to the JSON property text
3211 3212 3213 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3211 def text @text end |
#user ⇒ Array<Google::Apis::DriveV3::User>
Only present if valueType is user.
Corresponds to the JSON property user
3216 3217 3218 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3216 def user @user end |
#value_type ⇒ String
The field type. While new values may be supported in the future, the following
are currently allowed: * dateString * integer * selection * text *
user
Corresponds to the JSON property valueType
3223 3224 3225 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3223 def value_type @value_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3230 def update!(**args) @date_string = args[:date_string] if args.key?(:date_string) @id = args[:id] if args.key?(:id) @integer = args[:integer] if args.key?(:integer) @kind = args[:kind] if args.key?(:kind) @selection = args[:selection] if args.key?(:selection) @text = args[:text] if args.key?(:text) @user = args[:user] if args.key?(:user) @value_type = args[:value_type] if args.key?(:value_type) end |