Class: Google::Apis::CloudidentityV1beta1::ListUserInvitationsResponse

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

Overview

Response message for UserInvitation listing request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListUserInvitationsResponse

Returns a new instance of ListUserInvitationsResponse.



3022
3023
3024
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3022

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


3015
3016
3017
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3015

def next_page_token
  @next_page_token
end

#user_invitationsArray<Google::Apis::CloudidentityV1beta1::UserInvitation>

The list of UserInvitation resources. Corresponds to the JSON property userInvitations



3020
3021
3022
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3020

def user_invitations
  @user_invitations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3027
3028
3029
3030
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3027

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