import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Payment, Payment$Outbound } from "./payment.js"; /** * Payment */ export type GetPaymentResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: Payment; }; /** @internal */ export declare const GetPaymentResponse$inboundSchema: z.ZodType; /** @internal */ export type GetPaymentResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Payment$Outbound; }; /** @internal */ export declare const GetPaymentResponse$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 GetPaymentResponse$ { /** @deprecated use `GetPaymentResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetPaymentResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetPaymentResponse$Outbound` instead. */ type Outbound = GetPaymentResponse$Outbound; } export declare function getPaymentResponseToJSON(getPaymentResponse: GetPaymentResponse): string; export declare function getPaymentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getpaymentresponse.d.ts.map