SunshineConversationsClient::Page

August 27, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
afterStringA record id. Results will only contain the records that come after the specified record. Only one of `after` or `before` can be provided, not both.[optional]
beforeStringA record id. Results will only contain the records that come before the specified record. Only one of `after` or `before` can be provided, not both.[optional]
sizeIntegerThe number of records to return. Does not apply to the `listMessages` endpoint.[optional][default to 25]

Example

require 'sunshine-conversations-client'

instance = SunshineConversationsClient::Page.new(
  after: 5e1606762556d93e9c176f69,
  before: 5e1606762556d93e9c176f69,
  size: 10
)