/** * 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 ReadWrappingProperties2Response */ export interface ReadWrappingProperties2Response { /** * * @type {string} * @memberof ReadWrappingProperties2Response */ creationPath?: string; /** * * @type {Date} * @memberof ReadWrappingProperties2Response */ creationTime?: Date; /** * * @type {string} * @memberof ReadWrappingProperties2Response */ creationTtl?: string; } /** * Check if a given object implements the ReadWrappingProperties2Response interface. */ export declare function instanceOfReadWrappingProperties2Response(value: object): value is ReadWrappingProperties2Response; export declare function ReadWrappingProperties2ResponseFromJSON(json: any): ReadWrappingProperties2Response; export declare function ReadWrappingProperties2ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadWrappingProperties2Response; export declare function ReadWrappingProperties2ResponseToJSON(json: any): ReadWrappingProperties2Response; export declare function ReadWrappingProperties2ResponseToJSONTyped(value?: ReadWrappingProperties2Response | null, ignoreDiscriminator?: boolean): any;