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"; /** * Based on the status some functionality is enabled or disabled. */ export declare const SubsidiaryStatus: { readonly Active: "active"; readonly Inactive: "inactive"; }; /** * Based on the status some functionality is enabled or disabled. */ export type SubsidiaryStatus = ClosedEnum; export type Subsidiary = { /** * A unique identifier for an object. */ id?: string | undefined; /** * A unique identifier for an object. */ parentId?: string | null | undefined; /** * The name of the company. */ name?: string | null | undefined; /** * Based on the status some functionality is enabled or disabled. */ status?: SubsidiaryStatus | 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 SubsidiaryInput = { /** * A unique identifier for an object. */ parentId?: string | null | undefined; /** * The name of the company. */ name?: string | null | undefined; /** * Based on the status some functionality is enabled or disabled. */ status?: SubsidiaryStatus | 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 SubsidiaryStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SubsidiaryStatus$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 SubsidiaryStatus$ { /** @deprecated use `SubsidiaryStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; }>; /** @deprecated use `SubsidiaryStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; }>; } /** @internal */ export declare const Subsidiary$inboundSchema: z.ZodType; /** @internal */ export type Subsidiary$Outbound = { id?: string | undefined; parent_id?: string | null | undefined; name?: string | null | undefined; status?: string | 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 Subsidiary$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 Subsidiary$ { /** @deprecated use `Subsidiary$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Subsidiary$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Subsidiary$Outbound` instead. */ type Outbound = Subsidiary$Outbound; } export declare function subsidiaryToJSON(subsidiary: Subsidiary): string; export declare function subsidiaryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SubsidiaryInput$inboundSchema: z.ZodType; /** @internal */ export type SubsidiaryInput$Outbound = { parent_id?: string | null | undefined; name?: string | null | undefined; status?: string | undefined; row_version?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const SubsidiaryInput$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 SubsidiaryInput$ { /** @deprecated use `SubsidiaryInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubsidiaryInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SubsidiaryInput$Outbound` instead. */ type Outbound = SubsidiaryInput$Outbound; } export declare function subsidiaryInputToJSON(subsidiaryInput: SubsidiaryInput): string; export declare function subsidiaryInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subsidiary.d.ts.map