/** * 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 AppRoleWriteTokenTtlRequest */ export interface AppRoleWriteTokenTtlRequest { /** * The initial ttl of the token to generate * @type {string} * @memberof AppRoleWriteTokenTtlRequest */ tokenTtl?: string; } /** * Check if a given object implements the AppRoleWriteTokenTtlRequest interface. */ export declare function instanceOfAppRoleWriteTokenTtlRequest(value: object): value is AppRoleWriteTokenTtlRequest; export declare function AppRoleWriteTokenTtlRequestFromJSON(json: any): AppRoleWriteTokenTtlRequest; export declare function AppRoleWriteTokenTtlRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppRoleWriteTokenTtlRequest; export declare function AppRoleWriteTokenTtlRequestToJSON(json: any): AppRoleWriteTokenTtlRequest; export declare function AppRoleWriteTokenTtlRequestToJSONTyped(value?: AppRoleWriteTokenTtlRequest | null, ignoreDiscriminator?: boolean): any;