/** * 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.21.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 LdapLibraryCheckOutRequest */ export interface LdapLibraryCheckOutRequest { /** * The length of time before the check-out will expire, in seconds. * @type {string} * @memberof LdapLibraryCheckOutRequest */ ttl?: string; } /** * Check if a given object implements the LdapLibraryCheckOutRequest interface. */ export declare function instanceOfLdapLibraryCheckOutRequest(value: object): value is LdapLibraryCheckOutRequest; export declare function LdapLibraryCheckOutRequestFromJSON(json: any): LdapLibraryCheckOutRequest; export declare function LdapLibraryCheckOutRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LdapLibraryCheckOutRequest; export declare function LdapLibraryCheckOutRequestToJSON(json: any): LdapLibraryCheckOutRequest; export declare function LdapLibraryCheckOutRequestToJSONTyped(value?: LdapLibraryCheckOutRequest | null, ignoreDiscriminator?: boolean): any;