import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to cancel an existing bank relationship. */ export type CancelBankRelationshipRequestCreate = { /** * Comment when canceling the bank relationship. */ comment: string; /** * The name of the bank relationship to be canceled. */ name: string; }; /** @internal */ export declare const CancelBankRelationshipRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelBankRelationshipRequestCreate$Outbound = { comment: string; name: string; }; /** @internal */ export declare const CancelBankRelationshipRequestCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CancelBankRelationshipRequestCreate$ { /** @deprecated use `CancelBankRelationshipRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelBankRelationshipRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelBankRelationshipRequestCreate$Outbound` instead. */ type Outbound = CancelBankRelationshipRequestCreate$Outbound; } export declare function cancelBankRelationshipRequestCreateToJSON(cancelBankRelationshipRequestCreate: CancelBankRelationshipRequestCreate): string; export declare function cancelBankRelationshipRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelbankrelationshiprequestcreate.d.ts.map