import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { InvoiceResponse, InvoiceResponse$Outbound } from "./invoiceresponse.js"; /** * Invoice updated */ export type UpdateInvoiceResponse = { /** * 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: InvoiceResponse; }; /** @internal */ export declare const UpdateInvoiceResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateInvoiceResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: InvoiceResponse$Outbound; }; /** @internal */ export declare const UpdateInvoiceResponse$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 UpdateInvoiceResponse$ { /** @deprecated use `UpdateInvoiceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateInvoiceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateInvoiceResponse$Outbound` instead. */ type Outbound = UpdateInvoiceResponse$Outbound; } export declare function updateInvoiceResponseToJSON(updateInvoiceResponse: UpdateInvoiceResponse): string; export declare function updateInvoiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateinvoiceresponse.d.ts.map