Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 896 Bytes

ApiAccessToken.md

File metadata and controls

28 lines (22 loc) · 896 Bytes

FlatApi::ApiAccessToken

Properties

Name Type Description Notes
id String Unique identifier of this private token [optional]
name String Name of the personal access token [optional]
token String The token. This token will only be returned once, then only the first 4 characters will be returned. [optional]
issued_date Time The date then this token was issued [optional]
expiration_date Time The date then this token will expire [optional]
scopes Array<AppScopes> The list of scopes associated to the token [optional]

Example

require 'flat_api'

instance = FlatApi::ApiAccessToken.new(
  id: null,
  name: null,
  token: null,
  issued_date: null,
  expiration_date: null,
  scopes: null
)