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 AccountAccreditationServiceGetAccountAccreditationRequest = { /** * The account id. */ accountId: string; }; export type AccountAccreditationServiceGetAccountAccreditationResponse = { httpMeta: components.HTTPMetadata; /** * OK */ accountAccreditation?: components.AccountAccreditation | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. * * @remarks * FAILED_PRECONDITION: The operation was rejected because the system is not in a state required for the operation's execution. */ status?: components.Status | undefined; }; /** @internal */ export declare const AccountAccreditationServiceGetAccountAccreditationRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountAccreditationServiceGetAccountAccreditationRequest$Outbound = { account_id: string; }; /** @internal */ export declare const AccountAccreditationServiceGetAccountAccreditationRequest$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 AccountAccreditationServiceGetAccountAccreditationRequest$ { /** @deprecated use `AccountAccreditationServiceGetAccountAccreditationRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountAccreditationServiceGetAccountAccreditationRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountAccreditationServiceGetAccountAccreditationRequest$Outbound` instead. */ type Outbound = AccountAccreditationServiceGetAccountAccreditationRequest$Outbound; } export declare function accountAccreditationServiceGetAccountAccreditationRequestToJSON(accountAccreditationServiceGetAccountAccreditationRequest: AccountAccreditationServiceGetAccountAccreditationRequest): string; export declare function accountAccreditationServiceGetAccountAccreditationRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountAccreditationServiceGetAccountAccreditationResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountAccreditationServiceGetAccountAccreditationResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AccountAccreditation?: components.AccountAccreditation$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AccountAccreditationServiceGetAccountAccreditationResponse$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 AccountAccreditationServiceGetAccountAccreditationResponse$ { /** @deprecated use `AccountAccreditationServiceGetAccountAccreditationResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountAccreditationServiceGetAccountAccreditationResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountAccreditationServiceGetAccountAccreditationResponse$Outbound` instead. */ type Outbound = AccountAccreditationServiceGetAccountAccreditationResponse$Outbound; } export declare function accountAccreditationServiceGetAccountAccreditationResponseToJSON(accountAccreditationServiceGetAccountAccreditationResponse: AccountAccreditationServiceGetAccountAccreditationResponse): string; export declare function accountAccreditationServiceGetAccountAccreditationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountaccreditationservicegetaccountaccreditation.d.ts.map