Class: Google::Apis::GmailV1::ListCseIdentitiesResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCseIdentitiesResponse

Returns a new instance of ListCseIdentitiesResponse.



901
902
903
# File 'lib/google/apis/gmail_v1/classes.rb', line 901

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

Instance Attribute Details

#cse_identitiesArray<Google::Apis::GmailV1::CseIdentity>

One page of the list of CSE identities configured for the user. Corresponds to the JSON property cseIdentities



892
893
894
# File 'lib/google/apis/gmail_v1/classes.rb', line 892

def cse_identities
  @cse_identities
end

#next_page_tokenString

Pagination token to be passed to a subsequent ListCseIdentities call in order to retrieve the next page of identities. If this value is not returned or is the empty string, then no further pages remain. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


899
900
901
# File 'lib/google/apis/gmail_v1/classes.rb', line 899

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



906
907
908
909
# File 'lib/google/apis/gmail_v1/classes.rb', line 906

def update!(**args)
  @cse_identities = args[:cse_identities] if args.key?(:cse_identities)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end