Class: Google::Apis::FirestoreV1beta1::ListCollectionIdsRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirestoreV1beta1::ListCollectionIdsRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firestore_v1beta1/classes.rb,
 generated/google/apis/firestore_v1beta1/representations.rb,
 generated/google/apis/firestore_v1beta1/representations.rb
Overview
The request for Firestore.ListCollectionIds.
Instance Attribute Summary collapse
- 
  
    
      #page_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum number of results to return. 
- 
  
    
      #page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A page token. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListCollectionIdsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListCollectionIdsRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCollectionIdsRequest
Returns a new instance of ListCollectionIdsRequest
| 827 828 829 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 827 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#page_size ⇒ Fixnum
The maximum number of results to return.
Corresponds to the JSON property pageSize
| 819 820 821 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 819 def page_size @page_size end | 
#page_token ⇒ String
A page token. Must be a value from
ListCollectionIdsResponse.
Corresponds to the JSON property pageToken
| 825 826 827 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 825 def page_token @page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 832 833 834 835 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 832 def update!(**args) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) end |