Class: Google::Apis::GmailV1::ListDraftsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDraftsResponse

Returns a new instance of ListDraftsResponse.



718
719
720
# File 'generated/google/apis/gmail_v1/classes.rb', line 718

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

Instance Attribute Details

#draftsArray<Google::Apis::GmailV1::Draft>

List of drafts. Note that the Message property in each Draft resource only contains an id and a threadId. The messages.get method can fetch additional message details. Corresponds to the JSON property drafts

Returns:



706
707
708
# File 'generated/google/apis/gmail_v1/classes.rb', line 706

def drafts
  @drafts
end

#next_page_tokenString

Token to retrieve the next page of results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


711
712
713
# File 'generated/google/apis/gmail_v1/classes.rb', line 711

def next_page_token
  @next_page_token
end

#result_size_estimateFixnum

Estimated total number of results. Corresponds to the JSON property resultSizeEstimate

Returns:

  • (Fixnum)


716
717
718
# File 'generated/google/apis/gmail_v1/classes.rb', line 716

def result_size_estimate
  @result_size_estimate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



723
724
725
726
727
# File 'generated/google/apis/gmail_v1/classes.rb', line 723

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