class Google::Apis::EssentialcontactsV1::GoogleCloudEssentialcontactsV1ComputeContactsResponse

Response message for the ComputeContacts method.

Attributes

contacts[RW]

All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources. Corresponds to the JSON property `contacts` @return [Array<Google::Apis::EssentialcontactsV1::GoogleCloudEssentialcontactsV1Contact>]

next_page_token[RW]

If there are more results than those appearing in this response, then ` next_page_token` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token` and the rest of the parameters the same as the original request. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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