@piiano/vault-client
Version:
Piiano Vault generated typescript client
21 lines • 598 B
TypeScript
import type { ObjectFields } from './ObjectFields';
import type { PropertyName } from './PropertyName';
import type { TokenExpiration } from './TokenExpiration';
import type { TokenType } from './TokenType';
export type TokenData = {
/**
* The token ID.
*/
token_id: string;
token_type: TokenType;
props: Array<PropertyName>;
fields?: ObjectFields;
object_id?: string;
scope: string;
tags?: Array<string>;
expiration?: TokenExpiration;
created_at: string;
modified_at: string;
fptemplate?: string;
};
//# sourceMappingURL=TokenData.d.ts.map