class Google::Apis::CloudidentityV1beta1::ListUserInvitationsResponse

Response message for UserInvitation listing request.

Attributes

next_page_token[RW]

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` @return [String]

user_invitations[RW]

The list of UserInvitation resources. Corresponds to the JSON property `userInvitations` @return [Array<Google::Apis::CloudidentityV1beta1::UserInvitation>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudidentity_v1beta1/classes.rb, line 1878
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