/** * 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 ReadWrappingPropertiesResponse */ export interface ReadWrappingPropertiesResponse { /** * * @type {string} * @memberof ReadWrappingPropertiesResponse */ creationPath?: string; /** * * @type {Date} * @memberof ReadWrappingPropertiesResponse */ creationTime?: Date; /** * * @type {string} * @memberof ReadWrappingPropertiesResponse */ creationTtl?: string; } /** * Check if a given object implements the ReadWrappingPropertiesResponse interface. */ export declare function instanceOfReadWrappingPropertiesResponse(value: object): value is ReadWrappingPropertiesResponse; export declare function ReadWrappingPropertiesResponseFromJSON(json: any): ReadWrappingPropertiesResponse; export declare function ReadWrappingPropertiesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadWrappingPropertiesResponse; export declare function ReadWrappingPropertiesResponseToJSON(json: any): ReadWrappingPropertiesResponse; export declare function ReadWrappingPropertiesResponseToJSONTyped(value?: ReadWrappingPropertiesResponse | null, ignoreDiscriminator?: boolean): any;