class Google::Apis::MybusinessverificationsV1::ListVerificationsResponse
Response message for Verifications.ListVerifications.
Attributes
next_page_token[RW]
If the number of verifications exceeded the requested page size, this field will be populated with a token to fetch the next page of verification on a subsequent call. If there are no more attributes, this field will not be present in the response. Corresponds to the JSON property `nextPageToken` @return [String]
verifications[RW]
List of the verifications. Corresponds to the JSON property `verifications` @return [Array<Google::Apis::MybusinessverificationsV1::Verification>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 254 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 259 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @verifications = args[:verifications] if args.key?(:verifications) end