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.



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

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

Instance Attribute Details

#billing_profilesArray<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

#kindString

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

Returns:

  • (String)


1531
1532
1533
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1531

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)


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