/** * 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 AppRoleReadTokenMaxTtlResponse */ export interface AppRoleReadTokenMaxTtlResponse { /** * The maximum lifetime of the generated token * @type {number} * @memberof AppRoleReadTokenMaxTtlResponse */ tokenMaxTtl?: number; } /** * Check if a given object implements the AppRoleReadTokenMaxTtlResponse interface. */ export declare function instanceOfAppRoleReadTokenMaxTtlResponse(value: object): value is AppRoleReadTokenMaxTtlResponse; export declare function AppRoleReadTokenMaxTtlResponseFromJSON(json: any): AppRoleReadTokenMaxTtlResponse; export declare function AppRoleReadTokenMaxTtlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppRoleReadTokenMaxTtlResponse; export declare function AppRoleReadTokenMaxTtlResponseToJSON(json: any): AppRoleReadTokenMaxTtlResponse; export declare function AppRoleReadTokenMaxTtlResponseToJSONTyped(value?: AppRoleReadTokenMaxTtlResponse | null, ignoreDiscriminator?: boolean): any;