Class: Google::Apis::DfareportingV4::BillingProfilesListResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BillingProfilesListResponse

Returns a new instance of BillingProfilesListResponse.



1550
1551
1552
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1550

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

Instance Attribute Details

#billing_profilesArray<Google::Apis::DfareportingV4::BillingProfile>

Billing profiles collection. Corresponds to the JSON property billingProfiles



1537
1538
1539
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1537

def billing_profiles
  @billing_profiles
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#billingProfilesListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


1543
1544
1545
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1543

def kind
  @kind
end

#next_page_tokenString

Pagination token to be used for the next list operation. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1548
1549
1550
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1548

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1555
1556
1557
1558
1559
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1555

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