Skip to content

Latest commit

 

History

History
65 lines (34 loc) · 1.89 KB

MessageLogEntries.md

File metadata and controls

65 lines (34 loc) · 1.89 KB

MessageLogEntries

Properties

Name Type Description Notes
NextCursor Pointer to string The next value in the database. Note: If this value is not present, it means that there are no more values in the database for this combination of request parameters. [optional]
Data Pointer to []MessageLogEntry List of message logs.

Methods

GetNextCursor

func (o *MessageLogEntries) GetNextCursor() string

GetNextCursor returns the NextCursor field if non-nil, zero value otherwise.

GetNextCursorOk

func (o *MessageLogEntries) GetNextCursorOk() (string, bool)

GetNextCursorOk returns a tuple with the NextCursor field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasNextCursor

func (o *MessageLogEntries) HasNextCursor() bool

HasNextCursor returns a boolean if a field has been set.

SetNextCursor

func (o *MessageLogEntries) SetNextCursor(v string)

SetNextCursor gets a reference to the given string and assigns it to the NextCursor field.

GetData

func (o *MessageLogEntries) GetData() []MessageLogEntry

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *MessageLogEntries) GetDataOk() ([]MessageLogEntry, bool)

GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasData

func (o *MessageLogEntries) HasData() bool

HasData returns a boolean if a field has been set.

SetData

func (o *MessageLogEntries) SetData(v []MessageLogEntry)

SetData gets a reference to the given []MessageLogEntry and assigns it to the Data field.

[Back to Model list] [Back to API list] [Back to README]