Class: Google::Apis::ContentV2_1::ShippingsettingsListResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ShippingsettingsListResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
The token for the retrieval of the next page of shipping settings.
-
#resources ⇒ Array<Google::Apis::ContentV2_1::ShippingSettings>
Corresponds to the JSON property
resources
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShippingsettingsListResponse
constructor
A new instance of ShippingsettingsListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShippingsettingsListResponse
Returns a new instance of ShippingsettingsListResponse.
13820 13821 13822 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 13820 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
shippingsettingsListResponse
".
Corresponds to the JSON property kind
13808 13809 13810 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 13808 def kind @kind end |
#next_page_token ⇒ String
The token for the retrieval of the next page of shipping settings.
Corresponds to the JSON property nextPageToken
13813 13814 13815 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 13813 def next_page_token @next_page_token end |
#resources ⇒ Array<Google::Apis::ContentV2_1::ShippingSettings>
Corresponds to the JSON property resources
13818 13819 13820 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 13818 def resources @resources end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13825 13826 13827 13828 13829 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 13825 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resources = args[:resources] if args.key?(:resources) end |