/** * 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 PkiRootSignSelfIssuedResponse */ export interface PkiRootSignSelfIssuedResponse { /** * Certificate * @type {string} * @memberof PkiRootSignSelfIssuedResponse */ certificate?: string; /** * Issuing CA * @type {string} * @memberof PkiRootSignSelfIssuedResponse */ issuingCa?: string; } /** * Check if a given object implements the PkiRootSignSelfIssuedResponse interface. */ export declare function instanceOfPkiRootSignSelfIssuedResponse(value: object): value is PkiRootSignSelfIssuedResponse; export declare function PkiRootSignSelfIssuedResponseFromJSON(json: any): PkiRootSignSelfIssuedResponse; export declare function PkiRootSignSelfIssuedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiRootSignSelfIssuedResponse; export declare function PkiRootSignSelfIssuedResponseToJSON(json: any): PkiRootSignSelfIssuedResponse; export declare function PkiRootSignSelfIssuedResponseToJSONTyped(value?: PkiRootSignSelfIssuedResponse | null, ignoreDiscriminator?: boolean): any;