/** * 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 PkiWriteExternalPolicyAcmeAccountKidRequest */ export interface PkiWriteExternalPolicyAcmeAccountKidRequest { /** * ACME request 'payload' value * @type {string} * @memberof PkiWriteExternalPolicyAcmeAccountKidRequest */ payload?: string; /** * ACME request 'protected' value * @type {string} * @memberof PkiWriteExternalPolicyAcmeAccountKidRequest */ _protected?: string; /** * ACME request 'signature' value * @type {string} * @memberof PkiWriteExternalPolicyAcmeAccountKidRequest */ signature?: string; } /** * Check if a given object implements the PkiWriteExternalPolicyAcmeAccountKidRequest interface. */ export declare function instanceOfPkiWriteExternalPolicyAcmeAccountKidRequest(value: object): value is PkiWriteExternalPolicyAcmeAccountKidRequest; export declare function PkiWriteExternalPolicyAcmeAccountKidRequestFromJSON(json: any): PkiWriteExternalPolicyAcmeAccountKidRequest; export declare function PkiWriteExternalPolicyAcmeAccountKidRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiWriteExternalPolicyAcmeAccountKidRequest; export declare function PkiWriteExternalPolicyAcmeAccountKidRequestToJSON(json: any): PkiWriteExternalPolicyAcmeAccountKidRequest; export declare function PkiWriteExternalPolicyAcmeAccountKidRequestToJSONTyped(value?: PkiWriteExternalPolicyAcmeAccountKidRequest | null, ignoreDiscriminator?: boolean): any;