Class: Google::Apis::AndroidpublisherV3::VoidedPurchasesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::VoidedPurchasesListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb
Overview
Response for the voidedpurchases.list API.
Instance Attribute Summary collapse
-
#page_info ⇒ Google::Apis::AndroidpublisherV3::PageInfo
Information about the current page.
-
#token_pagination ⇒ Google::Apis::AndroidpublisherV3::TokenPagination
Pagination information returned by a List operation when token pagination is enabled.
-
#voided_purchases ⇒ Array<Google::Apis::AndroidpublisherV3::VoidedPurchase>
Corresponds to the JSON property
voidedPurchases
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VoidedPurchasesListResponse
constructor
A new instance of VoidedPurchasesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VoidedPurchasesListResponse
Returns a new instance of VoidedPurchasesListResponse.
2254 2255 2256 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_info ⇒ Google::Apis::AndroidpublisherV3::PageInfo
Information about the current page. List operations that supports paging
return only one "page" of results. This protocol buffer message describes the
page that has been returned.
Corresponds to the JSON property pageInfo
2235 2236 2237 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2235 def page_info @page_info end |
#token_pagination ⇒ Google::Apis::AndroidpublisherV3::TokenPagination
Pagination information returned by a List operation when token pagination is
enabled. List operations that supports paging return only one "page" of
results. This protocol buffer message describes the page that has been
returned. When using token pagination, clients should use the next/previous
token to get another page of the result. The presence or absence of next/
previous token indicates whether a next/previous page is available and
provides a mean of accessing this page. ListRequest.page_token should be set
to either next_page_token or previous_page_token to access another page.
Corresponds to the JSON property tokenPagination
2247 2248 2249 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2247 def token_pagination @token_pagination end |
#voided_purchases ⇒ Array<Google::Apis::AndroidpublisherV3::VoidedPurchase>
Corresponds to the JSON property voidedPurchases
2252 2253 2254 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2252 def voided_purchases @voided_purchases end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2259 2260 2261 2262 2263 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2259 def update!(**args) @page_info = args[:page_info] if args.key?(:page_info) @token_pagination = args[:token_pagination] if args.key?(:token_pagination) @voided_purchases = args[:voided_purchases] if args.key?(:voided_purchases) end |