Class: Google::Apis::CloudsearchV1::PossiblyTrimmedModel
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::PossiblyTrimmedModel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
This message contains either the device model, or a prefix of the device model (AKA a trimmed device model). The "is_trimmed" field indicates which one it is.
Instance Attribute Summary collapse
-
#is_trimmed ⇒ Boolean
(also: #is_trimmed?)
Corresponds to the JSON property
isTrimmed
. -
#model ⇒ String
Corresponds to the JSON property
model
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PossiblyTrimmedModel
constructor
A new instance of PossiblyTrimmedModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PossiblyTrimmedModel
Returns a new instance of PossiblyTrimmedModel.
15443 15444 15445 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15443 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_trimmed ⇒ Boolean Also known as: is_trimmed?
Corresponds to the JSON property isTrimmed
15435 15436 15437 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15435 def is_trimmed @is_trimmed end |
#model ⇒ String
Corresponds to the JSON property model
15441 15442 15443 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15441 def model @model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15448 15449 15450 15451 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15448 def update!(**args) @is_trimmed = args[:is_trimmed] if args.key?(:is_trimmed) @model = args[:model] if args.key?(:model) end |