import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomMappings, CustomMappings$Outbound } from "./custommappings.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; import { SubsidiaryReference, SubsidiaryReference$Outbound } from "./subsidiaryreference.js"; import { SubsidiaryReferenceInput, SubsidiaryReferenceInput$Outbound } from "./subsidiaryreferenceinput.js"; /** * Based on the status some functionality is enabled or disabled. */ export declare const DepartmentStatus: { readonly Active: "active"; readonly Inactive: "inactive"; }; /** * Based on the status some functionality is enabled or disabled. */ export type DepartmentStatus = ClosedEnum; export type AccountingDepartment = { /** * A unique identifier for an object. */ id?: string | undefined; /** * A unique identifier for an object. */ parentId?: string | null | undefined; /** * The name of the department. */ name?: string | null | undefined; /** * Based on the status some functionality is enabled or disabled. */ status?: DepartmentStatus | undefined; subsidiaries?: Array | undefined; /** * When custom mappings are configured on the resource, the result is included here. */ customMappings?: CustomMappings | null | undefined; /** * A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. */ rowVersion?: string | null | undefined; /** * The user who last updated the object. */ updatedBy?: string | null | undefined; /** * The user who created the object. */ createdBy?: string | null | undefined; /** * The date and time when the object was last updated. */ updatedAt?: Date | null | undefined; /** * The date and time when the object was created. */ createdAt?: Date | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; export type AccountingDepartmentInput = { /** * A unique identifier for an object. */ parentId?: string | null | undefined; /** * The name of the department. */ name?: string | null | undefined; /** * Based on the status some functionality is enabled or disabled. */ status?: DepartmentStatus | undefined; subsidiaries?: Array | undefined; /** * A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. */ rowVersion?: string | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const DepartmentStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DepartmentStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DepartmentStatus$ { /** @deprecated use `DepartmentStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; }>; /** @deprecated use `DepartmentStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; }>; } /** @internal */ export declare const AccountingDepartment$inboundSchema: z.ZodType; /** @internal */ export type AccountingDepartment$Outbound = { id?: string | undefined; parent_id?: string | null | undefined; name?: string | null | undefined; status?: string | undefined; subsidiaries?: Array | undefined; custom_mappings?: CustomMappings$Outbound | null | undefined; row_version?: string | null | undefined; updated_by?: string | null | undefined; created_by?: string | null | undefined; updated_at?: string | null | undefined; created_at?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const AccountingDepartment$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 AccountingDepartment$ { /** @deprecated use `AccountingDepartment$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingDepartment$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingDepartment$Outbound` instead. */ type Outbound = AccountingDepartment$Outbound; } export declare function accountingDepartmentToJSON(accountingDepartment: AccountingDepartment): string; export declare function accountingDepartmentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingDepartmentInput$inboundSchema: z.ZodType; /** @internal */ export type AccountingDepartmentInput$Outbound = { parent_id?: string | null | undefined; name?: string | null | undefined; status?: string | undefined; subsidiaries?: Array | undefined; row_version?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const AccountingDepartmentInput$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 AccountingDepartmentInput$ { /** @deprecated use `AccountingDepartmentInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentInput$Outbound` instead. */ type Outbound = AccountingDepartmentInput$Outbound; } export declare function accountingDepartmentInputToJSON(accountingDepartmentInput: AccountingDepartmentInput): string; export declare function accountingDepartmentInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingdepartment.d.ts.map