import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Expense, Expense$Outbound } from "./expense.js"; /** * Expenses */ export type GetExpenseResponse = { /** * 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: Expense; }; /** @internal */ export declare const GetExpenseResponse$inboundSchema: z.ZodType; /** @internal */ export type GetExpenseResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Expense$Outbound; }; /** @internal */ export declare const GetExpenseResponse$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 GetExpenseResponse$ { /** @deprecated use `GetExpenseResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetExpenseResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetExpenseResponse$Outbound` instead. */ type Outbound = GetExpenseResponse$Outbound; } export declare function getExpenseResponseToJSON(getExpenseResponse: GetExpenseResponse): string; export declare function getExpenseResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getexpenseresponse.d.ts.map