Class: Google::Apis::CloudsearchV1::PossiblyTrimmedModel

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PossiblyTrimmedModel

Returns a new instance of PossiblyTrimmedModel.



14817
14818
14819
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14817

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#is_trimmedBoolean Also known as: is_trimmed?

Corresponds to the JSON property isTrimmed

Returns:

  • (Boolean)


14809
14810
14811
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14809

def is_trimmed
  @is_trimmed
end

#modelString

Corresponds to the JSON property model

Returns:

  • (String)


14815
14816
14817
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14815

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14822
14823
14824
14825
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14822

def update!(**args)
  @is_trimmed = args[:is_trimmed] if args.key?(:is_trimmed)
  @model = args[:model] if args.key?(:model)
end