import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AccountsRemovePartyRequest = { /** * The account id. */ accountId: string; /** * The party id. */ partyId: string; removePartyRequestCreate: components.RemovePartyRequestCreate; }; export type AccountsRemovePartyResponse = { httpMeta: components.HTTPMetadata; /** * INVALID_ARGUMENT: The request is not valid, additional information may be present in the BadRequest details. */ status?: components.Status | undefined; }; /** @internal */ export declare const AccountsRemovePartyRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountsRemovePartyRequest$Outbound = { account_id: string; party_id: string; RemovePartyRequestCreate: components.RemovePartyRequestCreate$Outbound; }; /** @internal */ export declare const AccountsRemovePartyRequest$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 AccountsRemovePartyRequest$ { /** @deprecated use `AccountsRemovePartyRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountsRemovePartyRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountsRemovePartyRequest$Outbound` instead. */ type Outbound = AccountsRemovePartyRequest$Outbound; } export declare function accountsRemovePartyRequestToJSON(accountsRemovePartyRequest: AccountsRemovePartyRequest): string; export declare function accountsRemovePartyRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountsRemovePartyResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountsRemovePartyResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AccountsRemovePartyResponse$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 AccountsRemovePartyResponse$ { /** @deprecated use `AccountsRemovePartyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountsRemovePartyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountsRemovePartyResponse$Outbound` instead. */ type Outbound = AccountsRemovePartyResponse$Outbound; } export declare function accountsRemovePartyResponseToJSON(accountsRemovePartyResponse: AccountsRemovePartyResponse): string; export declare function accountsRemovePartyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountsremoveparty.d.ts.map