Class: Google::Apis::DfareportingV4::BillingProfilesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::BillingProfilesListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Billing profile List Response
Instance Attribute Summary collapse
-
#billing_profiles ⇒ Array<Google::Apis::DfareportingV4::BillingProfile>
Billing profiles collection.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BillingProfilesListResponse
constructor
A new instance of BillingProfilesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BillingProfilesListResponse
Returns a new instance of BillingProfilesListResponse.
1538 1539 1540 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1538 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billing_profiles ⇒ Array<Google::Apis::DfareportingV4::BillingProfile>
Billing profiles collection.
Corresponds to the JSON property billingProfiles
1525 1526 1527 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1525 def billing_profiles @billing_profiles end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#billingProfilesListResponse".
Corresponds to the JSON property kind
1531 1532 1533 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1531 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
1536 1537 1538 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1536 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1543 1544 1545 1546 1547 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1543 def update!(**args) @billing_profiles = args[:billing_profiles] if args.key?(:billing_profiles) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |