/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AppRoleReadTokenTtlResponse */ export interface AppRoleReadTokenTtlResponse { /** * The initial ttl of the token to generate * @type {number} * @memberof AppRoleReadTokenTtlResponse */ tokenTtl?: number; } /** * Check if a given object implements the AppRoleReadTokenTtlResponse interface. */ export declare function instanceOfAppRoleReadTokenTtlResponse(value: object): value is AppRoleReadTokenTtlResponse; export declare function AppRoleReadTokenTtlResponseFromJSON(json: any): AppRoleReadTokenTtlResponse; export declare function AppRoleReadTokenTtlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppRoleReadTokenTtlResponse; export declare function AppRoleReadTokenTtlResponseToJSON(json: any): AppRoleReadTokenTtlResponse; export declare function AppRoleReadTokenTtlResponseToJSONTyped(value?: AppRoleReadTokenTtlResponse | null, ignoreDiscriminator?: boolean): any;