Package video.api.client.api.models
Class TokenCreationPayload
- java.lang.Object
-
- video.api.client.api.models.TokenCreationPayload
-
- All Implemented Interfaces:
Serializable
public class TokenCreationPayload extends Object implements Serializable
TokenCreationPayload- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_TTL
-
Constructor Summary
Constructors Constructor Description TokenCreationPayload()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)IntegergetTtl()Time in seconds that the token will be active.inthashCode()voidsetTtl(Integer ttl)StringtoString()TokenCreationPayloadttl(Integer ttl)
-
-
-
Field Detail
-
SERIALIZED_NAME_TTL
public static final String SERIALIZED_NAME_TTL
- See Also:
- Constant Field Values
-
-
Method Detail
-
ttl
public TokenCreationPayload ttl(Integer ttl)
-
getTtl
@Nullable public Integer getTtl()
Time in seconds that the token will be active. A value of 0 means that the token has no expiration date. The default is to have no expiration. minimum: 0 maximum: 2147483647- Returns:
- ttl
-
setTtl
public void setTtl(Integer ttl)
-
-