class Google::Apis::AccessapprovalV1::ListApprovalRequestsResponse

Response to listing of ApprovalRequest objects.

Attributes

approval_requests[RW]

Approval request details. Corresponds to the JSON property `approvalRequests` @return [Array<Google::Apis::AccessapprovalV1::ApprovalRequest>]

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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