class Google::Apis::ServiceconsumermanagementV1::ListTenancyUnitsResponse

Response for the list request.

Attributes

next_page_token[RW]

Pagination token for large results. Corresponds to the JSON property `nextPageToken` @return [String]

tenancy_units[RW]

Tenancy units matching the request. Corresponds to the JSON property `tenancyUnits` @return [Array<Google::Apis::ServiceconsumermanagementV1::TenancyUnit>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/serviceconsumermanagement_v1/classes.rb, line 1508
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceconsumermanagement_v1/classes.rb, line 1513
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @tenancy_units = args[:tenancy_units] if args.key?(:tenancy_units)
end