/** * 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 PkiIssuerSignSelfIssuedResponse */ export interface PkiIssuerSignSelfIssuedResponse { /** * Certificate * @type {string} * @memberof PkiIssuerSignSelfIssuedResponse */ certificate?: string; /** * Issuing CA * @type {string} * @memberof PkiIssuerSignSelfIssuedResponse */ issuingCa?: string; } /** * Check if a given object implements the PkiIssuerSignSelfIssuedResponse interface. */ export declare function instanceOfPkiIssuerSignSelfIssuedResponse(value: object): value is PkiIssuerSignSelfIssuedResponse; export declare function PkiIssuerSignSelfIssuedResponseFromJSON(json: any): PkiIssuerSignSelfIssuedResponse; export declare function PkiIssuerSignSelfIssuedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiIssuerSignSelfIssuedResponse; export declare function PkiIssuerSignSelfIssuedResponseToJSON(json: any): PkiIssuerSignSelfIssuedResponse; export declare function PkiIssuerSignSelfIssuedResponseToJSONTyped(value?: PkiIssuerSignSelfIssuedResponse | null, ignoreDiscriminator?: boolean): any;