/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TokenScopes } from './TokenScopes'; /** * Environment API token required fields for creation. * @export * @interface PostTokenFields */ export interface PostTokenFields { /** * Name or note to help identify this token and its use. * @type {string} * @memberof PostTokenFields */ note: string; /** * Scopes assigned to an API token which they will have access to. * @type {Array} * @memberof PostTokenFields */ scopes?: Array; } export declare function PostTokenFieldsFromJSON(json: any): PostTokenFields; export declare function PostTokenFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostTokenFields; export declare function PostTokenFieldsToJSON(value?: PostTokenFields | null): any;