/** * 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 PoliciesGeneratePasswordFromPasswordPolicyResponse */ export interface PoliciesGeneratePasswordFromPasswordPolicyResponse { /** * * @type {string} * @memberof PoliciesGeneratePasswordFromPasswordPolicyResponse */ password?: string; } /** * Check if a given object implements the PoliciesGeneratePasswordFromPasswordPolicyResponse interface. */ export declare function instanceOfPoliciesGeneratePasswordFromPasswordPolicyResponse(value: object): value is PoliciesGeneratePasswordFromPasswordPolicyResponse; export declare function PoliciesGeneratePasswordFromPasswordPolicyResponseFromJSON(json: any): PoliciesGeneratePasswordFromPasswordPolicyResponse; export declare function PoliciesGeneratePasswordFromPasswordPolicyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PoliciesGeneratePasswordFromPasswordPolicyResponse; export declare function PoliciesGeneratePasswordFromPasswordPolicyResponseToJSON(json: any): PoliciesGeneratePasswordFromPasswordPolicyResponse; export declare function PoliciesGeneratePasswordFromPasswordPolicyResponseToJSONTyped(value?: PoliciesGeneratePasswordFromPasswordPolicyResponse | null, ignoreDiscriminator?: boolean): any;