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 |
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
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
func (o *WebPlayerSession) GetIdentifier() string
GetIdentifier returns the Identifier field if non-nil, zero value otherwise.
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.
func (o *WebPlayerSession) SetIdentifier(v string)
SetIdentifier sets Identifier field to given value.
func (o *WebPlayerSession) GetToken() string
GetToken returns the Token field if non-nil, zero value otherwise.
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.
func (o *WebPlayerSession) SetToken(v string)
SetToken sets Token field to given value.
func (o *WebPlayerSession) GetExpiration() float32
GetExpiration returns the Expiration field if non-nil, zero value otherwise.
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.
func (o *WebPlayerSession) SetExpiration(v float32)
SetExpiration sets Expiration field to given value.