Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Latest commit

 

History

History
93 lines (50 loc) · 2.63 KB

WebPlayerSession.md

File metadata and controls

93 lines (50 loc) · 2.63 KB

WebPlayerSession

Properties

Name Type Description Notes
Identifier string New Session Identifier
Token string Session Token
Expiration float32 Expiration in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z

Methods

NewWebPlayerSession

func NewWebPlayerSession(identifier string, token string, expiration float32, ) *WebPlayerSession

NewWebPlayerSession instantiates a new WebPlayerSession object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewWebPlayerSessionWithDefaults

func NewWebPlayerSessionWithDefaults() *WebPlayerSession

NewWebPlayerSessionWithDefaults instantiates a new WebPlayerSession object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetIdentifier

func (o *WebPlayerSession) GetIdentifier() string

GetIdentifier returns the Identifier field if non-nil, zero value otherwise.

GetIdentifierOk

func (o *WebPlayerSession) GetIdentifierOk() (*string, bool)

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

SetIdentifier

func (o *WebPlayerSession) SetIdentifier(v string)

SetIdentifier sets Identifier field to given value.

GetToken

func (o *WebPlayerSession) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *WebPlayerSession) GetTokenOk() (*string, bool)

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

SetToken

func (o *WebPlayerSession) SetToken(v string)

SetToken sets Token field to given value.

GetExpiration

func (o *WebPlayerSession) GetExpiration() float32

GetExpiration returns the Expiration field if non-nil, zero value otherwise.

GetExpirationOk

func (o *WebPlayerSession) GetExpirationOk() (*float32, bool)

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

SetExpiration

func (o *WebPlayerSession) SetExpiration(v float32)

SetExpiration sets Expiration field to given value.

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