Class: Google::Apis::CloudidentityV1::ListUserInvitationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::ListUserInvitationsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
Response message for UserInvitation listing request.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The token for the next page.
-
#user_invitations ⇒ Array<Google::Apis::CloudidentityV1::UserInvitation>
The list of UserInvitation resources.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUserInvitationsResponse
constructor
A new instance of ListUserInvitationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListUserInvitationsResponse
Returns a new instance of ListUserInvitationsResponse.
2250 2251 2252 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The token for the next page. If not empty, indicates that there may be more
UserInvitation
resources that match the listing request; this value can be
used in a subsequent ListUserInvitationsRequest to get continued results with
the current list call.
Corresponds to the JSON property nextPageToken
2243 2244 2245 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2243 def next_page_token @next_page_token end |
#user_invitations ⇒ Array<Google::Apis::CloudidentityV1::UserInvitation>
The list of UserInvitation resources.
Corresponds to the JSON property userInvitations
2248 2249 2250 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2248 def user_invitations @user_invitations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2255 2256 2257 2258 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2255 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @user_invitations = args[:user_invitations] if args.key?(:user_invitations) end |