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 AccountsDeleteTrustedContactRequest = { /** * The account id. */ accountId: string; /** * The trustedContact id. */ trustedContactId: string; }; export type AccountsDeleteTrustedContactResponse = { 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 AccountsDeleteTrustedContactRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountsDeleteTrustedContactRequest$Outbound = { account_id: string; trustedContact_id: string; }; /** @internal */ export declare const AccountsDeleteTrustedContactRequest$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 AccountsDeleteTrustedContactRequest$ { /** @deprecated use `AccountsDeleteTrustedContactRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountsDeleteTrustedContactRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountsDeleteTrustedContactRequest$Outbound` instead. */ type Outbound = AccountsDeleteTrustedContactRequest$Outbound; } export declare function accountsDeleteTrustedContactRequestToJSON(accountsDeleteTrustedContactRequest: AccountsDeleteTrustedContactRequest): string; export declare function accountsDeleteTrustedContactRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountsDeleteTrustedContactResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountsDeleteTrustedContactResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AccountsDeleteTrustedContactResponse$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 AccountsDeleteTrustedContactResponse$ { /** @deprecated use `AccountsDeleteTrustedContactResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountsDeleteTrustedContactResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountsDeleteTrustedContactResponse$Outbound` instead. */ type Outbound = AccountsDeleteTrustedContactResponse$Outbound; } export declare function accountsDeleteTrustedContactResponseToJSON(accountsDeleteTrustedContactResponse: AccountsDeleteTrustedContactResponse): string; export declare function accountsDeleteTrustedContactResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountsdeletetrustedcontact.d.ts.map