/** * 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 PkiSignWithRoleResponse */ export interface PkiSignWithRoleResponse { /** * Certificate Chain * @type {Array} * @memberof PkiSignWithRoleResponse */ caChain?: Array; /** * Certificate * @type {string} * @memberof PkiSignWithRoleResponse */ certificate?: string; /** * Time of expiration * @type {number} * @memberof PkiSignWithRoleResponse */ expiration?: number; /** * Issuing Certificate Authority * @type {string} * @memberof PkiSignWithRoleResponse */ issuingCa?: string; /** * Serial Number * @type {string} * @memberof PkiSignWithRoleResponse */ serialNumber?: string; } /** * Check if a given object implements the PkiSignWithRoleResponse interface. */ export declare function instanceOfPkiSignWithRoleResponse(value: object): value is PkiSignWithRoleResponse; export declare function PkiSignWithRoleResponseFromJSON(json: any): PkiSignWithRoleResponse; export declare function PkiSignWithRoleResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiSignWithRoleResponse; export declare function PkiSignWithRoleResponseToJSON(json: any): PkiSignWithRoleResponse; export declare function PkiSignWithRoleResponseToJSONTyped(value?: PkiSignWithRoleResponse | null, ignoreDiscriminator?: boolean): any;