Class: Google::Apis::IamV1::ListOauthClientsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb

Overview

Response message for ListOauthClients.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListOauthClientsResponse

Returns a new instance of ListOauthClientsResponse.



1099
1100
1101
# File 'lib/google/apis/iam_v1/classes.rb', line 1099

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

Instance Attribute Details

#next_page_tokenString

Optional. A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1092
1093
1094
# File 'lib/google/apis/iam_v1/classes.rb', line 1092

def next_page_token
  @next_page_token
end

#oauth_clientsArray<Google::Apis::IamV1::OauthClient>

A list of OauthClients. Corresponds to the JSON property oauthClients



1097
1098
1099
# File 'lib/google/apis/iam_v1/classes.rb', line 1097

def oauth_clients
  @oauth_clients
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1104
1105
1106
1107
# File 'lib/google/apis/iam_v1/classes.rb', line 1104

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @oauth_clients = args[:oauth_clients] if args.key?(:oauth_clients)
end