Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 529 Bytes

ApiTokenCreateRequestV1.md

File metadata and controls

22 lines (16 loc) · 529 Bytes

Falcon::ApiTokenCreateRequestV1

Properties

Name Type Description Notes
expires_timestamp Time The token's expiration time (RFC-3339). Null, if the token never expires. [optional]
label String The token label. [optional]
type String The token type. [optional]

Example

require 'crimson-falcon'

instance = Falcon::ApiTokenCreateRequestV1.new(
  expires_timestamp: null,
  label: null,
  type: null
)