import * as z from "zod";
import { ClosedEnum } from "../../types/enums.js";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SelectOption, SelectOption$Outbound } from "../components/selectoption.js";
import { Status, Status$Outbound } from "../components/status.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest = {
    object: string;
    recordId: string;
    attribute: string;
    showHistoric?: boolean | undefined;
    limit?: number | undefined;
    offset?: number | undefined;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp: {
    readonly Timestamp: "timestamp";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp;
    /**
     * A timestamp value represents a single, universal moment in time using an ISO 8601 formatted string. This means that a timestamp consists of a date, a time (with nanosecond precision), and a time zone. Attio will coerce timestamps which do not provide full nanosecond precision and UTC is assumed if no time zone is provided. For example, "2023", "2023-01", "2023-01-02", "2023-01-02T13:00", "2023-01-02T13:00:00", and "2023-01-02T13:00:00.000000000" will all be coerced to "2023-01-02T13:00:00.000000000Z". Timestamps are always returned in UTC. For example, writing a timestamp value using the string "2023-01-02T13:00:00.000000000+02:00" will result in the value "2023-01-02T11:00:00.000000000Z" being returned. The maximum date is "9999-12-31T23:59:59.999999999Z".
     */
    value: Date;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText: {
    readonly Text: "text";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16;
    /**
     * A raw text field. Values are limited to 10MB.
     */
    value: string;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect: {
    readonly Select: "select";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15;
    option: SelectOption;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating: {
    readonly Rating: "rating";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14;
    /**
     * A number between 0 and 5 (inclusive) to represent a star rating.
     */
    value: number;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus: {
    readonly Status: "status";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13;
    status: Status;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12 | null | undefined;
};
/**
 * The ISO 3166-1 alpha-2 country code representing the country that this phone number belongs to.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2: {
    readonly Af: "AF";
    readonly Ax: "AX";
    readonly Al: "AL";
    readonly Dz: "DZ";
    readonly As: "AS";
    readonly Ad: "AD";
    readonly Ao: "AO";
    readonly Ai: "AI";
    readonly Aq: "AQ";
    readonly Ag: "AG";
    readonly Ar: "AR";
    readonly Am: "AM";
    readonly Aw: "AW";
    readonly Au: "AU";
    readonly At: "AT";
    readonly Az: "AZ";
    readonly Bs: "BS";
    readonly Bh: "BH";
    readonly Bd: "BD";
    readonly Bb: "BB";
    readonly By: "BY";
    readonly Be: "BE";
    readonly Bz: "BZ";
    readonly Bj: "BJ";
    readonly Bm: "BM";
    readonly Bt: "BT";
    readonly Bo: "BO";
    readonly Ba: "BA";
    readonly Bw: "BW";
    readonly Bv: "BV";
    readonly Br: "BR";
    readonly Io: "IO";
    readonly Bn: "BN";
    readonly Bg: "BG";
    readonly Bf: "BF";
    readonly Bi: "BI";
    readonly Kh: "KH";
    readonly Cm: "CM";
    readonly Ca: "CA";
    readonly Cv: "CV";
    readonly Ky: "KY";
    readonly Cf: "CF";
    readonly Td: "TD";
    readonly Cl: "CL";
    readonly Cn: "CN";
    readonly Cx: "CX";
    readonly Cc: "CC";
    readonly Co: "CO";
    readonly Km: "KM";
    readonly Cg: "CG";
    readonly Cd: "CD";
    readonly Ck: "CK";
    readonly Cr: "CR";
    readonly Ci: "CI";
    readonly Hr: "HR";
    readonly Cu: "CU";
    readonly Cw: "CW";
    readonly Cy: "CY";
    readonly Cz: "CZ";
    readonly Dk: "DK";
    readonly Dj: "DJ";
    readonly Dm: "DM";
    readonly Do: "DO";
    readonly Ec: "EC";
    readonly Eg: "EG";
    readonly Sv: "SV";
    readonly Gq: "GQ";
    readonly Er: "ER";
    readonly Ee: "EE";
    readonly Et: "ET";
    readonly Fk: "FK";
    readonly Fo: "FO";
    readonly Fj: "FJ";
    readonly Fi: "FI";
    readonly Fr: "FR";
    readonly Gf: "GF";
    readonly Pf: "PF";
    readonly Tf: "TF";
    readonly Ga: "GA";
    readonly Gm: "GM";
    readonly Ge: "GE";
    readonly De: "DE";
    readonly Gh: "GH";
    readonly Gi: "GI";
    readonly Gr: "GR";
    readonly Gl: "GL";
    readonly Gd: "GD";
    readonly Gp: "GP";
    readonly Gu: "GU";
    readonly Gt: "GT";
    readonly Gg: "GG";
    readonly Gn: "GN";
    readonly Gw: "GW";
    readonly Gy: "GY";
    readonly Ht: "HT";
    readonly Hm: "HM";
    readonly Va: "VA";
    readonly Hn: "HN";
    readonly Hk: "HK";
    readonly Hu: "HU";
    readonly Is: "IS";
    readonly In: "IN";
    readonly Id: "ID";
    readonly Ir: "IR";
    readonly Iq: "IQ";
    readonly Ie: "IE";
    readonly Im: "IM";
    readonly Il: "IL";
    readonly It: "IT";
    readonly Jm: "JM";
    readonly Jp: "JP";
    readonly Je: "JE";
    readonly Jo: "JO";
    readonly Kz: "KZ";
    readonly Ke: "KE";
    readonly Ki: "KI";
    readonly Kr: "KR";
    readonly Kw: "KW";
    readonly Kg: "KG";
    readonly La: "LA";
    readonly Lv: "LV";
    readonly Lb: "LB";
    readonly Ls: "LS";
    readonly Lr: "LR";
    readonly Ly: "LY";
    readonly Li: "LI";
    readonly Lt: "LT";
    readonly Lu: "LU";
    readonly Mo: "MO";
    readonly Mk: "MK";
    readonly Mg: "MG";
    readonly Mw: "MW";
    readonly My: "MY";
    readonly Mv: "MV";
    readonly Ml: "ML";
    readonly Mt: "MT";
    readonly Mh: "MH";
    readonly Mq: "MQ";
    readonly Mr: "MR";
    readonly Mu: "MU";
    readonly Yt: "YT";
    readonly Mx: "MX";
    readonly Fm: "FM";
    readonly Md: "MD";
    readonly Mc: "MC";
    readonly Mn: "MN";
    readonly Me: "ME";
    readonly Ms: "MS";
    readonly Ma: "MA";
    readonly Mz: "MZ";
    readonly Mm: "MM";
    readonly Na: "NA";
    readonly Nr: "NR";
    readonly Np: "NP";
    readonly Nl: "NL";
    readonly An: "AN";
    readonly Nc: "NC";
    readonly Nz: "NZ";
    readonly Ni: "NI";
    readonly Ne: "NE";
    readonly Ng: "NG";
    readonly Nu: "NU";
    readonly Nf: "NF";
    readonly Mp: "MP";
    readonly No: "NO";
    readonly Om: "OM";
    readonly Pk: "PK";
    readonly Pw: "PW";
    readonly Ps: "PS";
    readonly Pa: "PA";
    readonly Pg: "PG";
    readonly Py: "PY";
    readonly Pe: "PE";
    readonly Ph: "PH";
    readonly Pn: "PN";
    readonly Pl: "PL";
    readonly Pt: "PT";
    readonly Pr: "PR";
    readonly Qa: "QA";
    readonly Re: "RE";
    readonly Ro: "RO";
    readonly Ru: "RU";
    readonly Rw: "RW";
    readonly Bl: "BL";
    readonly Sh: "SH";
    readonly Kn: "KN";
    readonly Lc: "LC";
    readonly Mf: "MF";
    readonly Pm: "PM";
    readonly Vc: "VC";
    readonly Ws: "WS";
    readonly Sm: "SM";
    readonly St: "ST";
    readonly Sa: "SA";
    readonly Sn: "SN";
    readonly Ss: "SS";
    readonly Rs: "RS";
    readonly Sc: "SC";
    readonly Sl: "SL";
    readonly Sg: "SG";
    readonly Sk: "SK";
    readonly Si: "SI";
    readonly Sb: "SB";
    readonly So: "SO";
    readonly Za: "ZA";
    readonly Gs: "GS";
    readonly Es: "ES";
    readonly Lk: "LK";
    readonly Sd: "SD";
    readonly Sr: "SR";
    readonly Sj: "SJ";
    readonly Sz: "SZ";
    readonly Se: "SE";
    readonly Ch: "CH";
    readonly Sy: "SY";
    readonly Tw: "TW";
    readonly Tj: "TJ";
    readonly Tz: "TZ";
    readonly Th: "TH";
    readonly Tl: "TL";
    readonly Tg: "TG";
    readonly Tk: "TK";
    readonly To: "TO";
    readonly Tt: "TT";
    readonly Tn: "TN";
    readonly Tr: "TR";
    readonly Tm: "TM";
    readonly Tc: "TC";
    readonly Tv: "TV";
    readonly Ug: "UG";
    readonly Ua: "UA";
    readonly Ae: "AE";
    readonly Gb: "GB";
    readonly Us: "US";
    readonly Um: "UM";
    readonly Uy: "UY";
    readonly Uz: "UZ";
    readonly Vu: "VU";
    readonly Ve: "VE";
    readonly Vn: "VN";
    readonly Vg: "VG";
    readonly Vi: "VI";
    readonly Wf: "WF";
    readonly Eh: "EH";
    readonly Ye: "YE";
    readonly Zm: "ZM";
    readonly Zw: "ZW";
};
/**
 * The ISO 3166-1 alpha-2 country code representing the country that this phone number belongs to.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2>;
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber: {
    readonly PhoneNumber: "phone-number";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12;
    /**
     * The raw, original phone number, as inputted.
     */
    originalPhoneNumber: string;
    /**
     * The ISO 3166-1 alpha-2 country code representing the country that this phone number belongs to.
     */
    countryCode: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2;
    phoneNumber: string;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName: {
    readonly PersonalName: "personal-name";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11;
    /**
     * The first name.
     */
    firstName: string;
    /**
     * The last name.
     */
    lastName: string;
    /**
     * The full name.
     */
    fullName: string;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber: {
    readonly Number: "number";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10;
    /**
     * Numbers are persisted as 64 bit floats.
     */
    value: number;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9 | null | undefined;
};
/**
 * The ISO 3166-1 alpha-2 country code for the country this location is in.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1: {
    readonly Af: "AF";
    readonly Ax: "AX";
    readonly Al: "AL";
    readonly Dz: "DZ";
    readonly As: "AS";
    readonly Ad: "AD";
    readonly Ao: "AO";
    readonly Ai: "AI";
    readonly Aq: "AQ";
    readonly Ag: "AG";
    readonly Ar: "AR";
    readonly Am: "AM";
    readonly Aw: "AW";
    readonly Au: "AU";
    readonly At: "AT";
    readonly Az: "AZ";
    readonly Bs: "BS";
    readonly Bh: "BH";
    readonly Bd: "BD";
    readonly Bb: "BB";
    readonly By: "BY";
    readonly Be: "BE";
    readonly Bz: "BZ";
    readonly Bj: "BJ";
    readonly Bm: "BM";
    readonly Bt: "BT";
    readonly Bo: "BO";
    readonly Ba: "BA";
    readonly Bw: "BW";
    readonly Bv: "BV";
    readonly Br: "BR";
    readonly Io: "IO";
    readonly Bn: "BN";
    readonly Bg: "BG";
    readonly Bf: "BF";
    readonly Bi: "BI";
    readonly Kh: "KH";
    readonly Cm: "CM";
    readonly Ca: "CA";
    readonly Cv: "CV";
    readonly Ky: "KY";
    readonly Cf: "CF";
    readonly Td: "TD";
    readonly Cl: "CL";
    readonly Cn: "CN";
    readonly Cx: "CX";
    readonly Cc: "CC";
    readonly Co: "CO";
    readonly Km: "KM";
    readonly Cg: "CG";
    readonly Cd: "CD";
    readonly Ck: "CK";
    readonly Cr: "CR";
    readonly Ci: "CI";
    readonly Hr: "HR";
    readonly Cu: "CU";
    readonly Cw: "CW";
    readonly Cy: "CY";
    readonly Cz: "CZ";
    readonly Dk: "DK";
    readonly Dj: "DJ";
    readonly Dm: "DM";
    readonly Do: "DO";
    readonly Ec: "EC";
    readonly Eg: "EG";
    readonly Sv: "SV";
    readonly Gq: "GQ";
    readonly Er: "ER";
    readonly Ee: "EE";
    readonly Et: "ET";
    readonly Fk: "FK";
    readonly Fo: "FO";
    readonly Fj: "FJ";
    readonly Fi: "FI";
    readonly Fr: "FR";
    readonly Gf: "GF";
    readonly Pf: "PF";
    readonly Tf: "TF";
    readonly Ga: "GA";
    readonly Gm: "GM";
    readonly Ge: "GE";
    readonly De: "DE";
    readonly Gh: "GH";
    readonly Gi: "GI";
    readonly Gr: "GR";
    readonly Gl: "GL";
    readonly Gd: "GD";
    readonly Gp: "GP";
    readonly Gu: "GU";
    readonly Gt: "GT";
    readonly Gg: "GG";
    readonly Gn: "GN";
    readonly Gw: "GW";
    readonly Gy: "GY";
    readonly Ht: "HT";
    readonly Hm: "HM";
    readonly Va: "VA";
    readonly Hn: "HN";
    readonly Hk: "HK";
    readonly Hu: "HU";
    readonly Is: "IS";
    readonly In: "IN";
    readonly Id: "ID";
    readonly Ir: "IR";
    readonly Iq: "IQ";
    readonly Ie: "IE";
    readonly Im: "IM";
    readonly Il: "IL";
    readonly It: "IT";
    readonly Jm: "JM";
    readonly Jp: "JP";
    readonly Je: "JE";
    readonly Jo: "JO";
    readonly Kz: "KZ";
    readonly Ke: "KE";
    readonly Ki: "KI";
    readonly Kr: "KR";
    readonly Kw: "KW";
    readonly Kg: "KG";
    readonly La: "LA";
    readonly Lv: "LV";
    readonly Lb: "LB";
    readonly Ls: "LS";
    readonly Lr: "LR";
    readonly Ly: "LY";
    readonly Li: "LI";
    readonly Lt: "LT";
    readonly Lu: "LU";
    readonly Mo: "MO";
    readonly Mk: "MK";
    readonly Mg: "MG";
    readonly Mw: "MW";
    readonly My: "MY";
    readonly Mv: "MV";
    readonly Ml: "ML";
    readonly Mt: "MT";
    readonly Mh: "MH";
    readonly Mq: "MQ";
    readonly Mr: "MR";
    readonly Mu: "MU";
    readonly Yt: "YT";
    readonly Mx: "MX";
    readonly Fm: "FM";
    readonly Md: "MD";
    readonly Mc: "MC";
    readonly Mn: "MN";
    readonly Me: "ME";
    readonly Ms: "MS";
    readonly Ma: "MA";
    readonly Mz: "MZ";
    readonly Mm: "MM";
    readonly Na: "NA";
    readonly Nr: "NR";
    readonly Np: "NP";
    readonly Nl: "NL";
    readonly An: "AN";
    readonly Nc: "NC";
    readonly Nz: "NZ";
    readonly Ni: "NI";
    readonly Ne: "NE";
    readonly Ng: "NG";
    readonly Nu: "NU";
    readonly Nf: "NF";
    readonly Mp: "MP";
    readonly No: "NO";
    readonly Om: "OM";
    readonly Pk: "PK";
    readonly Pw: "PW";
    readonly Ps: "PS";
    readonly Pa: "PA";
    readonly Pg: "PG";
    readonly Py: "PY";
    readonly Pe: "PE";
    readonly Ph: "PH";
    readonly Pn: "PN";
    readonly Pl: "PL";
    readonly Pt: "PT";
    readonly Pr: "PR";
    readonly Qa: "QA";
    readonly Re: "RE";
    readonly Ro: "RO";
    readonly Ru: "RU";
    readonly Rw: "RW";
    readonly Bl: "BL";
    readonly Sh: "SH";
    readonly Kn: "KN";
    readonly Lc: "LC";
    readonly Mf: "MF";
    readonly Pm: "PM";
    readonly Vc: "VC";
    readonly Ws: "WS";
    readonly Sm: "SM";
    readonly St: "ST";
    readonly Sa: "SA";
    readonly Sn: "SN";
    readonly Ss: "SS";
    readonly Rs: "RS";
    readonly Sc: "SC";
    readonly Sl: "SL";
    readonly Sg: "SG";
    readonly Sk: "SK";
    readonly Si: "SI";
    readonly Sb: "SB";
    readonly So: "SO";
    readonly Za: "ZA";
    readonly Gs: "GS";
    readonly Es: "ES";
    readonly Lk: "LK";
    readonly Sd: "SD";
    readonly Sr: "SR";
    readonly Sj: "SJ";
    readonly Sz: "SZ";
    readonly Se: "SE";
    readonly Ch: "CH";
    readonly Sy: "SY";
    readonly Tw: "TW";
    readonly Tj: "TJ";
    readonly Tz: "TZ";
    readonly Th: "TH";
    readonly Tl: "TL";
    readonly Tg: "TG";
    readonly Tk: "TK";
    readonly To: "TO";
    readonly Tt: "TT";
    readonly Tn: "TN";
    readonly Tr: "TR";
    readonly Tm: "TM";
    readonly Tc: "TC";
    readonly Tv: "TV";
    readonly Ug: "UG";
    readonly Ua: "UA";
    readonly Ae: "AE";
    readonly Gb: "GB";
    readonly Us: "US";
    readonly Um: "UM";
    readonly Uy: "UY";
    readonly Uz: "UZ";
    readonly Vu: "VU";
    readonly Ve: "VE";
    readonly Vn: "VN";
    readonly Vg: "VG";
    readonly Vi: "VI";
    readonly Wf: "WF";
    readonly Eh: "EH";
    readonly Ye: "YE";
    readonly Zm: "ZM";
    readonly Zw: "ZW";
};
/**
 * The ISO 3166-1 alpha-2 country code for the country this location is in.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1>;
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation: {
    readonly Location: "location";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9;
    /**
     * The first line of the address. Note that this value is not currently represented in the UI but will be persisted and readable through API calls.
     */
    line1: string | null;
    /**
     * The second line of the address. Note that this value is not currently represented in the UI but will be persisted and readable through API calls.
     */
    line2: string | null;
    /**
     * The third line of the address. Note that this value is not currently represented in the UI but will be persisted and readable through API calls.
     */
    line3: string | null;
    /**
     * The fourth line of the address. Note that this value is not currently represented in the UI but will be persisted and readable through API calls.
     */
    line4: string | null;
    /**
     * The town, neighborhood or area the location is in.
     */
    locality: string | null;
    /**
     * The state, county, province or region that the location is in.
     */
    region: string | null;
    /**
     * The postcode or zip code for the location. Note that this value is not currently represented in the UI but will be persisted and readable through API calls.}
     */
    postcode: string | null;
    /**
     * The ISO 3166-1 alpha-2 country code for the country this location is in.
     */
    countryCode: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1 | null;
    /**
     * The latitude of the location. Validated by the regular expression `/^[-+]?([1-8]?\d(\.\d+)?|90(\.0+)?)$/`. Note that this value is not currently represented in the UI but will be persisted and readable through API calls.}
     */
    latitude: string | null;
    /**
     * The longitude of the location. Validated by the regular expression `/^[-+]?(180(\.0+)?|((1[0-7]\d)|([1-9]?\d))(\.\d+)?)$/`
     */
    longitude: string | null;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8 | null | undefined;
};
/**
 * The type of interaction e.g. calendar or email.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType: {
    readonly CalendarEvent: "calendar-event";
    readonly Call: "call";
    readonly ChatThread: "chat-thread";
    readonly Email: "email";
    readonly InPersonMeeting: "in-person-meeting";
    readonly Meeting: "meeting";
};
/**
 * The type of interaction e.g. calendar or email.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType>;
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction: {
    readonly Interaction: "interaction";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8;
    /**
     * The type of interaction e.g. calendar or email.
     */
    interactionType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType;
    /**
     * When the interaction occurred.
     */
    interactedAt: Date;
    /**
     * The actor that created this value.
     */
    ownerActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference: {
    readonly RecordReference: "record-reference";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7;
    /**
     * A slug identifying the object that the referenced record belongs to.
     */
    targetObject: string;
    /**
     * A UUID to identify the referenced record.
     */
    targetRecordId: string;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress: {
    readonly EmailAddress: "email-address";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6;
    originalEmailAddress: string;
    emailAddress: string;
    emailDomain: string;
    emailRootDomain: string;
    emailLocalSpecifier: string;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain: {
    readonly Domain: "domain";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5;
    domain: string;
    rootDomain: string;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate: {
    readonly Date: "date";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate;
    /**
     * A date represents a single calendar year, month and day, independent of timezone. If hours, months, seconds or timezones are provided, they will be trimmed. For example, "2023" and "2023-01" will be coerced into "2023-01-01", and "2023-01-02", "2023-01-02T13:00", "2023-01-02T14:00:00", "2023-01-02T15:00:00.000000000", and "2023-01-02T15:00:00.000000000+02:00" will all be coerced to "2023-01-02". If a timezone is provided that would result in a different calendar date in UTC, the date will be coerced to UTC and then the timezone component will be trimmed. For example, the value "2023-01-02T23:00:00-10:00" will be returned as "2023-01-03". The maximum date is "9999-12-31".
     */
    value: string;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3 | null | undefined;
};
/**
 * The ISO4217 currency code representing the currency that the value is stored in.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode: {
    readonly Aud: "AUD";
    readonly Brl: "BRL";
    readonly Bel: "BEL";
    readonly Cad: "CAD";
    readonly Cny: "CNY";
    readonly Cop: "COP";
    readonly Czk: "CZK";
    readonly Dkk: "DKK";
    readonly Eur: "EUR";
    readonly Hkd: "HKD";
    readonly Isk: "ISK";
    readonly Inr: "INR";
    readonly Ils: "ILS";
    readonly Jpy: "JPY";
    readonly Krw: "KRW";
    readonly Myr: "MYR";
    readonly Mxn: "MXN";
    readonly Ntd: "NTD";
    readonly Nzd: "NZD";
    readonly Ngn: "NGN";
    readonly Nok: "NOK";
    readonly Xpf: "XPF";
    readonly Pen: "PEN";
    readonly Php: "PHP";
    readonly Pln: "PLN";
    readonly Gbp: "GBP";
    readonly Sar: "SAR";
    readonly Sgd: "SGD";
    readonly Zar: "ZAR";
    readonly Sek: "SEK";
    readonly Chf: "CHF";
    readonly Aed: "AED";
    readonly Usd: "USD";
};
/**
 * The ISO4217 currency code representing the currency that the value is stored in.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode>;
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency: {
    readonly Currency: "currency";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3;
    /**
     * A numerical representation of the currency value. A decimal with a max of 4 decimal places.
     */
    currencyValue: number;
    /**
     * The ISO4217 currency code representing the currency that the value is stored in.
     */
    currencyCode?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode | null | undefined;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2 | null | undefined;
};
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox: {
    readonly Checkbox: "checkbox";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2;
    /**
     * A boolean representing whether the checkbox is checked or not. The string values 'true' and 'false' are also accepted.
     */
    value: boolean;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox;
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1 = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1>;
/**
 * The actor that created this value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1 = {
    /**
     * An ID to identify the actor.
     */
    id?: string | null | undefined;
    /**
     * The type of actor. [Read more information on actor types here](/docs/actors).
     */
    type?: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1 | null | undefined;
};
/**
 * The type of the referenced actor. [Read more information on actor types here](/docs/actors).
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType: {
    readonly ApiToken: "api-token";
    readonly WorkspaceMember: "workspace-member";
    readonly System: "system";
    readonly App: "app";
};
/**
 * The type of the referenced actor. [Read more information on actor types here](/docs/actors).
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType>;
/**
 * The attribute type of the value.
 */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference: {
    readonly ActorReference: "actor-reference";
};
/**
 * The attribute type of the value.
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference = ClosedEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference>;
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference = {
    /**
     * The point in time at which this value was made "active". `active_from` can be considered roughly analogous to `created_at`.
     */
    activeFrom: Date;
    /**
     * The point in time at which this value was deactivated. If `null`, the value is active.
     */
    activeUntil: Date | null;
    /**
     * The actor that created this value.
     */
    createdByActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1;
    /**
     * The type of the referenced actor. [Read more information on actor types here](/docs/actors).
     */
    referencedActorType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType;
    /**
     * The ID of the referenced actor.
     */
    referencedActorId: string | null;
    /**
     * The attribute type of the value.
     */
    attributeType: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference;
};
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation;
/**
 * Success
 */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse = {
    data: Array<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation>;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$Outbound = {
    object: string;
    record_id: string;
    attribute: string;
    show_historic: boolean;
    limit?: number | undefined;
    offset?: number | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequestToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequestFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesRequest, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType17$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Timestamp: "timestamp";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeTimestamp$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Timestamp: "timestamp";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor17$Outbound;
    attribute_type: string;
    value: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestampToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestampFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType16$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Text: "text";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeText$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Text: "text";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor16$Outbound;
    value: string;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTextToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTextFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType15$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Select: "select";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeSelect$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Select: "select";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor15$Outbound;
    option: SelectOption$Outbound;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelectToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelectFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType14$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Rating: "rating";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRating$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Rating: "rating";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor14$Outbound;
    value: number;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRatingToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRatingFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType13$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Status: "status";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeStatus$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Status: "status";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor13$Outbound;
    status: Status$Outbound;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatusToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatusFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType12$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Af: "AF";
        readonly Ax: "AX";
        readonly Al: "AL";
        readonly Dz: "DZ";
        readonly As: "AS";
        readonly Ad: "AD";
        readonly Ao: "AO";
        readonly Ai: "AI";
        readonly Aq: "AQ";
        readonly Ag: "AG";
        readonly Ar: "AR";
        readonly Am: "AM";
        readonly Aw: "AW";
        readonly Au: "AU";
        readonly At: "AT";
        readonly Az: "AZ";
        readonly Bs: "BS";
        readonly Bh: "BH";
        readonly Bd: "BD";
        readonly Bb: "BB";
        readonly By: "BY";
        readonly Be: "BE";
        readonly Bz: "BZ";
        readonly Bj: "BJ";
        readonly Bm: "BM";
        readonly Bt: "BT";
        readonly Bo: "BO";
        readonly Ba: "BA";
        readonly Bw: "BW";
        readonly Bv: "BV";
        readonly Br: "BR";
        readonly Io: "IO";
        readonly Bn: "BN";
        readonly Bg: "BG";
        readonly Bf: "BF";
        readonly Bi: "BI";
        readonly Kh: "KH";
        readonly Cm: "CM";
        readonly Ca: "CA";
        readonly Cv: "CV";
        readonly Ky: "KY";
        readonly Cf: "CF";
        readonly Td: "TD";
        readonly Cl: "CL";
        readonly Cn: "CN";
        readonly Cx: "CX";
        readonly Cc: "CC";
        readonly Co: "CO";
        readonly Km: "KM";
        readonly Cg: "CG";
        readonly Cd: "CD";
        readonly Ck: "CK";
        readonly Cr: "CR";
        readonly Ci: "CI";
        readonly Hr: "HR";
        readonly Cu: "CU";
        readonly Cw: "CW";
        readonly Cy: "CY";
        readonly Cz: "CZ";
        readonly Dk: "DK";
        readonly Dj: "DJ";
        readonly Dm: "DM";
        readonly Do: "DO";
        readonly Ec: "EC";
        readonly Eg: "EG";
        readonly Sv: "SV";
        readonly Gq: "GQ";
        readonly Er: "ER";
        readonly Ee: "EE";
        readonly Et: "ET";
        readonly Fk: "FK";
        readonly Fo: "FO";
        readonly Fj: "FJ";
        readonly Fi: "FI";
        readonly Fr: "FR";
        readonly Gf: "GF";
        readonly Pf: "PF";
        readonly Tf: "TF";
        readonly Ga: "GA";
        readonly Gm: "GM";
        readonly Ge: "GE";
        readonly De: "DE";
        readonly Gh: "GH";
        readonly Gi: "GI";
        readonly Gr: "GR";
        readonly Gl: "GL";
        readonly Gd: "GD";
        readonly Gp: "GP";
        readonly Gu: "GU";
        readonly Gt: "GT";
        readonly Gg: "GG";
        readonly Gn: "GN";
        readonly Gw: "GW";
        readonly Gy: "GY";
        readonly Ht: "HT";
        readonly Hm: "HM";
        readonly Va: "VA";
        readonly Hn: "HN";
        readonly Hk: "HK";
        readonly Hu: "HU";
        readonly Is: "IS";
        readonly In: "IN";
        readonly Id: "ID";
        readonly Ir: "IR";
        readonly Iq: "IQ";
        readonly Ie: "IE";
        readonly Im: "IM";
        readonly Il: "IL";
        readonly It: "IT";
        readonly Jm: "JM";
        readonly Jp: "JP";
        readonly Je: "JE";
        readonly Jo: "JO";
        readonly Kz: "KZ";
        readonly Ke: "KE";
        readonly Ki: "KI";
        readonly Kr: "KR";
        readonly Kw: "KW";
        readonly Kg: "KG";
        readonly La: "LA";
        readonly Lv: "LV";
        readonly Lb: "LB";
        readonly Ls: "LS";
        readonly Lr: "LR";
        readonly Ly: "LY";
        readonly Li: "LI";
        readonly Lt: "LT";
        readonly Lu: "LU";
        readonly Mo: "MO";
        readonly Mk: "MK";
        readonly Mg: "MG";
        readonly Mw: "MW";
        readonly My: "MY";
        readonly Mv: "MV";
        readonly Ml: "ML";
        readonly Mt: "MT";
        readonly Mh: "MH";
        readonly Mq: "MQ";
        readonly Mr: "MR";
        readonly Mu: "MU";
        readonly Yt: "YT";
        readonly Mx: "MX";
        readonly Fm: "FM";
        readonly Md: "MD";
        readonly Mc: "MC";
        readonly Mn: "MN";
        readonly Me: "ME";
        readonly Ms: "MS";
        readonly Ma: "MA";
        readonly Mz: "MZ";
        readonly Mm: "MM";
        readonly Na: "NA";
        readonly Nr: "NR";
        readonly Np: "NP";
        readonly Nl: "NL";
        readonly An: "AN";
        readonly Nc: "NC";
        readonly Nz: "NZ";
        readonly Ni: "NI";
        readonly Ne: "NE";
        readonly Ng: "NG";
        readonly Nu: "NU";
        readonly Nf: "NF";
        readonly Mp: "MP";
        readonly No: "NO";
        readonly Om: "OM";
        readonly Pk: "PK";
        readonly Pw: "PW";
        readonly Ps: "PS";
        readonly Pa: "PA";
        readonly Pg: "PG";
        readonly Py: "PY";
        readonly Pe: "PE";
        readonly Ph: "PH";
        readonly Pn: "PN";
        readonly Pl: "PL";
        readonly Pt: "PT";
        readonly Pr: "PR";
        readonly Qa: "QA";
        readonly Re: "RE";
        readonly Ro: "RO";
        readonly Ru: "RU";
        readonly Rw: "RW";
        readonly Bl: "BL";
        readonly Sh: "SH";
        readonly Kn: "KN";
        readonly Lc: "LC";
        readonly Mf: "MF";
        readonly Pm: "PM";
        readonly Vc: "VC";
        readonly Ws: "WS";
        readonly Sm: "SM";
        readonly St: "ST";
        readonly Sa: "SA";
        readonly Sn: "SN";
        readonly Ss: "SS";
        readonly Rs: "RS";
        readonly Sc: "SC";
        readonly Sl: "SL";
        readonly Sg: "SG";
        readonly Sk: "SK";
        readonly Si: "SI";
        readonly Sb: "SB";
        readonly So: "SO";
        readonly Za: "ZA";
        readonly Gs: "GS";
        readonly Es: "ES";
        readonly Lk: "LK";
        readonly Sd: "SD";
        readonly Sr: "SR";
        readonly Sj: "SJ";
        readonly Sz: "SZ";
        readonly Se: "SE";
        readonly Ch: "CH";
        readonly Sy: "SY";
        readonly Tw: "TW";
        readonly Tj: "TJ";
        readonly Tz: "TZ";
        readonly Th: "TH";
        readonly Tl: "TL";
        readonly Tg: "TG";
        readonly Tk: "TK";
        readonly To: "TO";
        readonly Tt: "TT";
        readonly Tn: "TN";
        readonly Tr: "TR";
        readonly Tm: "TM";
        readonly Tc: "TC";
        readonly Tv: "TV";
        readonly Ug: "UG";
        readonly Ua: "UA";
        readonly Ae: "AE";
        readonly Gb: "GB";
        readonly Us: "US";
        readonly Um: "UM";
        readonly Uy: "UY";
        readonly Uz: "UZ";
        readonly Vu: "VU";
        readonly Ve: "VE";
        readonly Vn: "VN";
        readonly Vg: "VG";
        readonly Vi: "VI";
        readonly Wf: "WF";
        readonly Eh: "EH";
        readonly Ye: "YE";
        readonly Zm: "ZM";
        readonly Zw: "ZW";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode2$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Af: "AF";
        readonly Ax: "AX";
        readonly Al: "AL";
        readonly Dz: "DZ";
        readonly As: "AS";
        readonly Ad: "AD";
        readonly Ao: "AO";
        readonly Ai: "AI";
        readonly Aq: "AQ";
        readonly Ag: "AG";
        readonly Ar: "AR";
        readonly Am: "AM";
        readonly Aw: "AW";
        readonly Au: "AU";
        readonly At: "AT";
        readonly Az: "AZ";
        readonly Bs: "BS";
        readonly Bh: "BH";
        readonly Bd: "BD";
        readonly Bb: "BB";
        readonly By: "BY";
        readonly Be: "BE";
        readonly Bz: "BZ";
        readonly Bj: "BJ";
        readonly Bm: "BM";
        readonly Bt: "BT";
        readonly Bo: "BO";
        readonly Ba: "BA";
        readonly Bw: "BW";
        readonly Bv: "BV";
        readonly Br: "BR";
        readonly Io: "IO";
        readonly Bn: "BN";
        readonly Bg: "BG";
        readonly Bf: "BF";
        readonly Bi: "BI";
        readonly Kh: "KH";
        readonly Cm: "CM";
        readonly Ca: "CA";
        readonly Cv: "CV";
        readonly Ky: "KY";
        readonly Cf: "CF";
        readonly Td: "TD";
        readonly Cl: "CL";
        readonly Cn: "CN";
        readonly Cx: "CX";
        readonly Cc: "CC";
        readonly Co: "CO";
        readonly Km: "KM";
        readonly Cg: "CG";
        readonly Cd: "CD";
        readonly Ck: "CK";
        readonly Cr: "CR";
        readonly Ci: "CI";
        readonly Hr: "HR";
        readonly Cu: "CU";
        readonly Cw: "CW";
        readonly Cy: "CY";
        readonly Cz: "CZ";
        readonly Dk: "DK";
        readonly Dj: "DJ";
        readonly Dm: "DM";
        readonly Do: "DO";
        readonly Ec: "EC";
        readonly Eg: "EG";
        readonly Sv: "SV";
        readonly Gq: "GQ";
        readonly Er: "ER";
        readonly Ee: "EE";
        readonly Et: "ET";
        readonly Fk: "FK";
        readonly Fo: "FO";
        readonly Fj: "FJ";
        readonly Fi: "FI";
        readonly Fr: "FR";
        readonly Gf: "GF";
        readonly Pf: "PF";
        readonly Tf: "TF";
        readonly Ga: "GA";
        readonly Gm: "GM";
        readonly Ge: "GE";
        readonly De: "DE";
        readonly Gh: "GH";
        readonly Gi: "GI";
        readonly Gr: "GR";
        readonly Gl: "GL";
        readonly Gd: "GD";
        readonly Gp: "GP";
        readonly Gu: "GU";
        readonly Gt: "GT";
        readonly Gg: "GG";
        readonly Gn: "GN";
        readonly Gw: "GW";
        readonly Gy: "GY";
        readonly Ht: "HT";
        readonly Hm: "HM";
        readonly Va: "VA";
        readonly Hn: "HN";
        readonly Hk: "HK";
        readonly Hu: "HU";
        readonly Is: "IS";
        readonly In: "IN";
        readonly Id: "ID";
        readonly Ir: "IR";
        readonly Iq: "IQ";
        readonly Ie: "IE";
        readonly Im: "IM";
        readonly Il: "IL";
        readonly It: "IT";
        readonly Jm: "JM";
        readonly Jp: "JP";
        readonly Je: "JE";
        readonly Jo: "JO";
        readonly Kz: "KZ";
        readonly Ke: "KE";
        readonly Ki: "KI";
        readonly Kr: "KR";
        readonly Kw: "KW";
        readonly Kg: "KG";
        readonly La: "LA";
        readonly Lv: "LV";
        readonly Lb: "LB";
        readonly Ls: "LS";
        readonly Lr: "LR";
        readonly Ly: "LY";
        readonly Li: "LI";
        readonly Lt: "LT";
        readonly Lu: "LU";
        readonly Mo: "MO";
        readonly Mk: "MK";
        readonly Mg: "MG";
        readonly Mw: "MW";
        readonly My: "MY";
        readonly Mv: "MV";
        readonly Ml: "ML";
        readonly Mt: "MT";
        readonly Mh: "MH";
        readonly Mq: "MQ";
        readonly Mr: "MR";
        readonly Mu: "MU";
        readonly Yt: "YT";
        readonly Mx: "MX";
        readonly Fm: "FM";
        readonly Md: "MD";
        readonly Mc: "MC";
        readonly Mn: "MN";
        readonly Me: "ME";
        readonly Ms: "MS";
        readonly Ma: "MA";
        readonly Mz: "MZ";
        readonly Mm: "MM";
        readonly Na: "NA";
        readonly Nr: "NR";
        readonly Np: "NP";
        readonly Nl: "NL";
        readonly An: "AN";
        readonly Nc: "NC";
        readonly Nz: "NZ";
        readonly Ni: "NI";
        readonly Ne: "NE";
        readonly Ng: "NG";
        readonly Nu: "NU";
        readonly Nf: "NF";
        readonly Mp: "MP";
        readonly No: "NO";
        readonly Om: "OM";
        readonly Pk: "PK";
        readonly Pw: "PW";
        readonly Ps: "PS";
        readonly Pa: "PA";
        readonly Pg: "PG";
        readonly Py: "PY";
        readonly Pe: "PE";
        readonly Ph: "PH";
        readonly Pn: "PN";
        readonly Pl: "PL";
        readonly Pt: "PT";
        readonly Pr: "PR";
        readonly Qa: "QA";
        readonly Re: "RE";
        readonly Ro: "RO";
        readonly Ru: "RU";
        readonly Rw: "RW";
        readonly Bl: "BL";
        readonly Sh: "SH";
        readonly Kn: "KN";
        readonly Lc: "LC";
        readonly Mf: "MF";
        readonly Pm: "PM";
        readonly Vc: "VC";
        readonly Ws: "WS";
        readonly Sm: "SM";
        readonly St: "ST";
        readonly Sa: "SA";
        readonly Sn: "SN";
        readonly Ss: "SS";
        readonly Rs: "RS";
        readonly Sc: "SC";
        readonly Sl: "SL";
        readonly Sg: "SG";
        readonly Sk: "SK";
        readonly Si: "SI";
        readonly Sb: "SB";
        readonly So: "SO";
        readonly Za: "ZA";
        readonly Gs: "GS";
        readonly Es: "ES";
        readonly Lk: "LK";
        readonly Sd: "SD";
        readonly Sr: "SR";
        readonly Sj: "SJ";
        readonly Sz: "SZ";
        readonly Se: "SE";
        readonly Ch: "CH";
        readonly Sy: "SY";
        readonly Tw: "TW";
        readonly Tj: "TJ";
        readonly Tz: "TZ";
        readonly Th: "TH";
        readonly Tl: "TL";
        readonly Tg: "TG";
        readonly Tk: "TK";
        readonly To: "TO";
        readonly Tt: "TT";
        readonly Tn: "TN";
        readonly Tr: "TR";
        readonly Tm: "TM";
        readonly Tc: "TC";
        readonly Tv: "TV";
        readonly Ug: "UG";
        readonly Ua: "UA";
        readonly Ae: "AE";
        readonly Gb: "GB";
        readonly Us: "US";
        readonly Um: "UM";
        readonly Uy: "UY";
        readonly Uz: "UZ";
        readonly Vu: "VU";
        readonly Ve: "VE";
        readonly Vn: "VN";
        readonly Vg: "VG";
        readonly Vi: "VI";
        readonly Wf: "WF";
        readonly Eh: "EH";
        readonly Ye: "YE";
        readonly Zm: "ZM";
        readonly Zw: "ZW";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly PhoneNumber: "phone-number";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePhoneNumber$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly PhoneNumber: "phone-number";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor12$Outbound;
    original_phone_number: string;
    country_code: string;
    phone_number: string;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumberToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumberFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType11$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly PersonalName: "personal-name";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypePersonalName$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly PersonalName: "personal-name";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor11$Outbound;
    first_name: string;
    last_name: string;
    full_name: string;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalNameToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalNameFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType10$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Number: "number";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeNumber$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Number: "number";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor10$Outbound;
    value: number;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumberToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumberFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType9$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Af: "AF";
        readonly Ax: "AX";
        readonly Al: "AL";
        readonly Dz: "DZ";
        readonly As: "AS";
        readonly Ad: "AD";
        readonly Ao: "AO";
        readonly Ai: "AI";
        readonly Aq: "AQ";
        readonly Ag: "AG";
        readonly Ar: "AR";
        readonly Am: "AM";
        readonly Aw: "AW";
        readonly Au: "AU";
        readonly At: "AT";
        readonly Az: "AZ";
        readonly Bs: "BS";
        readonly Bh: "BH";
        readonly Bd: "BD";
        readonly Bb: "BB";
        readonly By: "BY";
        readonly Be: "BE";
        readonly Bz: "BZ";
        readonly Bj: "BJ";
        readonly Bm: "BM";
        readonly Bt: "BT";
        readonly Bo: "BO";
        readonly Ba: "BA";
        readonly Bw: "BW";
        readonly Bv: "BV";
        readonly Br: "BR";
        readonly Io: "IO";
        readonly Bn: "BN";
        readonly Bg: "BG";
        readonly Bf: "BF";
        readonly Bi: "BI";
        readonly Kh: "KH";
        readonly Cm: "CM";
        readonly Ca: "CA";
        readonly Cv: "CV";
        readonly Ky: "KY";
        readonly Cf: "CF";
        readonly Td: "TD";
        readonly Cl: "CL";
        readonly Cn: "CN";
        readonly Cx: "CX";
        readonly Cc: "CC";
        readonly Co: "CO";
        readonly Km: "KM";
        readonly Cg: "CG";
        readonly Cd: "CD";
        readonly Ck: "CK";
        readonly Cr: "CR";
        readonly Ci: "CI";
        readonly Hr: "HR";
        readonly Cu: "CU";
        readonly Cw: "CW";
        readonly Cy: "CY";
        readonly Cz: "CZ";
        readonly Dk: "DK";
        readonly Dj: "DJ";
        readonly Dm: "DM";
        readonly Do: "DO";
        readonly Ec: "EC";
        readonly Eg: "EG";
        readonly Sv: "SV";
        readonly Gq: "GQ";
        readonly Er: "ER";
        readonly Ee: "EE";
        readonly Et: "ET";
        readonly Fk: "FK";
        readonly Fo: "FO";
        readonly Fj: "FJ";
        readonly Fi: "FI";
        readonly Fr: "FR";
        readonly Gf: "GF";
        readonly Pf: "PF";
        readonly Tf: "TF";
        readonly Ga: "GA";
        readonly Gm: "GM";
        readonly Ge: "GE";
        readonly De: "DE";
        readonly Gh: "GH";
        readonly Gi: "GI";
        readonly Gr: "GR";
        readonly Gl: "GL";
        readonly Gd: "GD";
        readonly Gp: "GP";
        readonly Gu: "GU";
        readonly Gt: "GT";
        readonly Gg: "GG";
        readonly Gn: "GN";
        readonly Gw: "GW";
        readonly Gy: "GY";
        readonly Ht: "HT";
        readonly Hm: "HM";
        readonly Va: "VA";
        readonly Hn: "HN";
        readonly Hk: "HK";
        readonly Hu: "HU";
        readonly Is: "IS";
        readonly In: "IN";
        readonly Id: "ID";
        readonly Ir: "IR";
        readonly Iq: "IQ";
        readonly Ie: "IE";
        readonly Im: "IM";
        readonly Il: "IL";
        readonly It: "IT";
        readonly Jm: "JM";
        readonly Jp: "JP";
        readonly Je: "JE";
        readonly Jo: "JO";
        readonly Kz: "KZ";
        readonly Ke: "KE";
        readonly Ki: "KI";
        readonly Kr: "KR";
        readonly Kw: "KW";
        readonly Kg: "KG";
        readonly La: "LA";
        readonly Lv: "LV";
        readonly Lb: "LB";
        readonly Ls: "LS";
        readonly Lr: "LR";
        readonly Ly: "LY";
        readonly Li: "LI";
        readonly Lt: "LT";
        readonly Lu: "LU";
        readonly Mo: "MO";
        readonly Mk: "MK";
        readonly Mg: "MG";
        readonly Mw: "MW";
        readonly My: "MY";
        readonly Mv: "MV";
        readonly Ml: "ML";
        readonly Mt: "MT";
        readonly Mh: "MH";
        readonly Mq: "MQ";
        readonly Mr: "MR";
        readonly Mu: "MU";
        readonly Yt: "YT";
        readonly Mx: "MX";
        readonly Fm: "FM";
        readonly Md: "MD";
        readonly Mc: "MC";
        readonly Mn: "MN";
        readonly Me: "ME";
        readonly Ms: "MS";
        readonly Ma: "MA";
        readonly Mz: "MZ";
        readonly Mm: "MM";
        readonly Na: "NA";
        readonly Nr: "NR";
        readonly Np: "NP";
        readonly Nl: "NL";
        readonly An: "AN";
        readonly Nc: "NC";
        readonly Nz: "NZ";
        readonly Ni: "NI";
        readonly Ne: "NE";
        readonly Ng: "NG";
        readonly Nu: "NU";
        readonly Nf: "NF";
        readonly Mp: "MP";
        readonly No: "NO";
        readonly Om: "OM";
        readonly Pk: "PK";
        readonly Pw: "PW";
        readonly Ps: "PS";
        readonly Pa: "PA";
        readonly Pg: "PG";
        readonly Py: "PY";
        readonly Pe: "PE";
        readonly Ph: "PH";
        readonly Pn: "PN";
        readonly Pl: "PL";
        readonly Pt: "PT";
        readonly Pr: "PR";
        readonly Qa: "QA";
        readonly Re: "RE";
        readonly Ro: "RO";
        readonly Ru: "RU";
        readonly Rw: "RW";
        readonly Bl: "BL";
        readonly Sh: "SH";
        readonly Kn: "KN";
        readonly Lc: "LC";
        readonly Mf: "MF";
        readonly Pm: "PM";
        readonly Vc: "VC";
        readonly Ws: "WS";
        readonly Sm: "SM";
        readonly St: "ST";
        readonly Sa: "SA";
        readonly Sn: "SN";
        readonly Ss: "SS";
        readonly Rs: "RS";
        readonly Sc: "SC";
        readonly Sl: "SL";
        readonly Sg: "SG";
        readonly Sk: "SK";
        readonly Si: "SI";
        readonly Sb: "SB";
        readonly So: "SO";
        readonly Za: "ZA";
        readonly Gs: "GS";
        readonly Es: "ES";
        readonly Lk: "LK";
        readonly Sd: "SD";
        readonly Sr: "SR";
        readonly Sj: "SJ";
        readonly Sz: "SZ";
        readonly Se: "SE";
        readonly Ch: "CH";
        readonly Sy: "SY";
        readonly Tw: "TW";
        readonly Tj: "TJ";
        readonly Tz: "TZ";
        readonly Th: "TH";
        readonly Tl: "TL";
        readonly Tg: "TG";
        readonly Tk: "TK";
        readonly To: "TO";
        readonly Tt: "TT";
        readonly Tn: "TN";
        readonly Tr: "TR";
        readonly Tm: "TM";
        readonly Tc: "TC";
        readonly Tv: "TV";
        readonly Ug: "UG";
        readonly Ua: "UA";
        readonly Ae: "AE";
        readonly Gb: "GB";
        readonly Us: "US";
        readonly Um: "UM";
        readonly Uy: "UY";
        readonly Uz: "UZ";
        readonly Vu: "VU";
        readonly Ve: "VE";
        readonly Vn: "VN";
        readonly Vg: "VG";
        readonly Vi: "VI";
        readonly Wf: "WF";
        readonly Eh: "EH";
        readonly Ye: "YE";
        readonly Zm: "ZM";
        readonly Zw: "ZW";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCountryCode1$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Af: "AF";
        readonly Ax: "AX";
        readonly Al: "AL";
        readonly Dz: "DZ";
        readonly As: "AS";
        readonly Ad: "AD";
        readonly Ao: "AO";
        readonly Ai: "AI";
        readonly Aq: "AQ";
        readonly Ag: "AG";
        readonly Ar: "AR";
        readonly Am: "AM";
        readonly Aw: "AW";
        readonly Au: "AU";
        readonly At: "AT";
        readonly Az: "AZ";
        readonly Bs: "BS";
        readonly Bh: "BH";
        readonly Bd: "BD";
        readonly Bb: "BB";
        readonly By: "BY";
        readonly Be: "BE";
        readonly Bz: "BZ";
        readonly Bj: "BJ";
        readonly Bm: "BM";
        readonly Bt: "BT";
        readonly Bo: "BO";
        readonly Ba: "BA";
        readonly Bw: "BW";
        readonly Bv: "BV";
        readonly Br: "BR";
        readonly Io: "IO";
        readonly Bn: "BN";
        readonly Bg: "BG";
        readonly Bf: "BF";
        readonly Bi: "BI";
        readonly Kh: "KH";
        readonly Cm: "CM";
        readonly Ca: "CA";
        readonly Cv: "CV";
        readonly Ky: "KY";
        readonly Cf: "CF";
        readonly Td: "TD";
        readonly Cl: "CL";
        readonly Cn: "CN";
        readonly Cx: "CX";
        readonly Cc: "CC";
        readonly Co: "CO";
        readonly Km: "KM";
        readonly Cg: "CG";
        readonly Cd: "CD";
        readonly Ck: "CK";
        readonly Cr: "CR";
        readonly Ci: "CI";
        readonly Hr: "HR";
        readonly Cu: "CU";
        readonly Cw: "CW";
        readonly Cy: "CY";
        readonly Cz: "CZ";
        readonly Dk: "DK";
        readonly Dj: "DJ";
        readonly Dm: "DM";
        readonly Do: "DO";
        readonly Ec: "EC";
        readonly Eg: "EG";
        readonly Sv: "SV";
        readonly Gq: "GQ";
        readonly Er: "ER";
        readonly Ee: "EE";
        readonly Et: "ET";
        readonly Fk: "FK";
        readonly Fo: "FO";
        readonly Fj: "FJ";
        readonly Fi: "FI";
        readonly Fr: "FR";
        readonly Gf: "GF";
        readonly Pf: "PF";
        readonly Tf: "TF";
        readonly Ga: "GA";
        readonly Gm: "GM";
        readonly Ge: "GE";
        readonly De: "DE";
        readonly Gh: "GH";
        readonly Gi: "GI";
        readonly Gr: "GR";
        readonly Gl: "GL";
        readonly Gd: "GD";
        readonly Gp: "GP";
        readonly Gu: "GU";
        readonly Gt: "GT";
        readonly Gg: "GG";
        readonly Gn: "GN";
        readonly Gw: "GW";
        readonly Gy: "GY";
        readonly Ht: "HT";
        readonly Hm: "HM";
        readonly Va: "VA";
        readonly Hn: "HN";
        readonly Hk: "HK";
        readonly Hu: "HU";
        readonly Is: "IS";
        readonly In: "IN";
        readonly Id: "ID";
        readonly Ir: "IR";
        readonly Iq: "IQ";
        readonly Ie: "IE";
        readonly Im: "IM";
        readonly Il: "IL";
        readonly It: "IT";
        readonly Jm: "JM";
        readonly Jp: "JP";
        readonly Je: "JE";
        readonly Jo: "JO";
        readonly Kz: "KZ";
        readonly Ke: "KE";
        readonly Ki: "KI";
        readonly Kr: "KR";
        readonly Kw: "KW";
        readonly Kg: "KG";
        readonly La: "LA";
        readonly Lv: "LV";
        readonly Lb: "LB";
        readonly Ls: "LS";
        readonly Lr: "LR";
        readonly Ly: "LY";
        readonly Li: "LI";
        readonly Lt: "LT";
        readonly Lu: "LU";
        readonly Mo: "MO";
        readonly Mk: "MK";
        readonly Mg: "MG";
        readonly Mw: "MW";
        readonly My: "MY";
        readonly Mv: "MV";
        readonly Ml: "ML";
        readonly Mt: "MT";
        readonly Mh: "MH";
        readonly Mq: "MQ";
        readonly Mr: "MR";
        readonly Mu: "MU";
        readonly Yt: "YT";
        readonly Mx: "MX";
        readonly Fm: "FM";
        readonly Md: "MD";
        readonly Mc: "MC";
        readonly Mn: "MN";
        readonly Me: "ME";
        readonly Ms: "MS";
        readonly Ma: "MA";
        readonly Mz: "MZ";
        readonly Mm: "MM";
        readonly Na: "NA";
        readonly Nr: "NR";
        readonly Np: "NP";
        readonly Nl: "NL";
        readonly An: "AN";
        readonly Nc: "NC";
        readonly Nz: "NZ";
        readonly Ni: "NI";
        readonly Ne: "NE";
        readonly Ng: "NG";
        readonly Nu: "NU";
        readonly Nf: "NF";
        readonly Mp: "MP";
        readonly No: "NO";
        readonly Om: "OM";
        readonly Pk: "PK";
        readonly Pw: "PW";
        readonly Ps: "PS";
        readonly Pa: "PA";
        readonly Pg: "PG";
        readonly Py: "PY";
        readonly Pe: "PE";
        readonly Ph: "PH";
        readonly Pn: "PN";
        readonly Pl: "PL";
        readonly Pt: "PT";
        readonly Pr: "PR";
        readonly Qa: "QA";
        readonly Re: "RE";
        readonly Ro: "RO";
        readonly Ru: "RU";
        readonly Rw: "RW";
        readonly Bl: "BL";
        readonly Sh: "SH";
        readonly Kn: "KN";
        readonly Lc: "LC";
        readonly Mf: "MF";
        readonly Pm: "PM";
        readonly Vc: "VC";
        readonly Ws: "WS";
        readonly Sm: "SM";
        readonly St: "ST";
        readonly Sa: "SA";
        readonly Sn: "SN";
        readonly Ss: "SS";
        readonly Rs: "RS";
        readonly Sc: "SC";
        readonly Sl: "SL";
        readonly Sg: "SG";
        readonly Sk: "SK";
        readonly Si: "SI";
        readonly Sb: "SB";
        readonly So: "SO";
        readonly Za: "ZA";
        readonly Gs: "GS";
        readonly Es: "ES";
        readonly Lk: "LK";
        readonly Sd: "SD";
        readonly Sr: "SR";
        readonly Sj: "SJ";
        readonly Sz: "SZ";
        readonly Se: "SE";
        readonly Ch: "CH";
        readonly Sy: "SY";
        readonly Tw: "TW";
        readonly Tj: "TJ";
        readonly Tz: "TZ";
        readonly Th: "TH";
        readonly Tl: "TL";
        readonly Tg: "TG";
        readonly Tk: "TK";
        readonly To: "TO";
        readonly Tt: "TT";
        readonly Tn: "TN";
        readonly Tr: "TR";
        readonly Tm: "TM";
        readonly Tc: "TC";
        readonly Tv: "TV";
        readonly Ug: "UG";
        readonly Ua: "UA";
        readonly Ae: "AE";
        readonly Gb: "GB";
        readonly Us: "US";
        readonly Um: "UM";
        readonly Uy: "UY";
        readonly Uz: "UZ";
        readonly Vu: "VU";
        readonly Ve: "VE";
        readonly Vn: "VN";
        readonly Vg: "VG";
        readonly Vi: "VI";
        readonly Wf: "WF";
        readonly Eh: "EH";
        readonly Ye: "YE";
        readonly Zm: "ZM";
        readonly Zw: "ZW";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Location: "location";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeLocation$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Location: "location";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor9$Outbound;
    line_1: string | null;
    line_2: string | null;
    line_3: string | null;
    line_4: string | null;
    locality: string | null;
    region: string | null;
    postcode: string | null;
    country_code: string | null;
    latitude: string | null;
    longitude: string | null;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocationToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocationFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType8$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly CalendarEvent: "calendar-event";
        readonly Call: "call";
        readonly ChatThread: "chat-thread";
        readonly Email: "email";
        readonly InPersonMeeting: "in-person-meeting";
        readonly Meeting: "meeting";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesInteractionType$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly CalendarEvent: "calendar-event";
        readonly Call: "call";
        readonly ChatThread: "chat-thread";
        readonly Email: "email";
        readonly InPersonMeeting: "in-person-meeting";
        readonly Meeting: "meeting";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorType$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActorFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Interaction: "interaction";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeInteraction$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Interaction: "interaction";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor8$Outbound;
    interaction_type: string;
    interacted_at: string;
    owner_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesOwnerActor$Outbound;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteractionToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteractionFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType7$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly RecordReference: "record-reference";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeRecordReference$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly RecordReference: "record-reference";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor7$Outbound;
    target_object: string;
    target_record_id: string;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReferenceToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReferenceFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType6$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly EmailAddress: "email-address";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeEmailAddress$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly EmailAddress: "email-address";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor6$Outbound;
    original_email_address: string;
    email_address: string;
    email_domain: string;
    email_root_domain: string;
    email_local_specifier: string;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddressToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddressFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType5$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Domain: "domain";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDomain$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Domain: "domain";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor5$Outbound;
    domain: string;
    root_domain: string;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomainToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomainFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType4$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Date: "date";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeDate$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Date: "date";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor4$Outbound;
    attribute_type: string;
    value: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDateToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDateFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType3$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Aud: "AUD";
        readonly Brl: "BRL";
        readonly Bel: "BEL";
        readonly Cad: "CAD";
        readonly Cny: "CNY";
        readonly Cop: "COP";
        readonly Czk: "CZK";
        readonly Dkk: "DKK";
        readonly Eur: "EUR";
        readonly Hkd: "HKD";
        readonly Isk: "ISK";
        readonly Inr: "INR";
        readonly Ils: "ILS";
        readonly Jpy: "JPY";
        readonly Krw: "KRW";
        readonly Myr: "MYR";
        readonly Mxn: "MXN";
        readonly Ntd: "NTD";
        readonly Nzd: "NZD";
        readonly Ngn: "NGN";
        readonly Nok: "NOK";
        readonly Xpf: "XPF";
        readonly Pen: "PEN";
        readonly Php: "PHP";
        readonly Pln: "PLN";
        readonly Gbp: "GBP";
        readonly Sar: "SAR";
        readonly Sgd: "SGD";
        readonly Zar: "ZAR";
        readonly Sek: "SEK";
        readonly Chf: "CHF";
        readonly Aed: "AED";
        readonly Usd: "USD";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCurrencyCode$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Aud: "AUD";
        readonly Brl: "BRL";
        readonly Bel: "BEL";
        readonly Cad: "CAD";
        readonly Cny: "CNY";
        readonly Cop: "COP";
        readonly Czk: "CZK";
        readonly Dkk: "DKK";
        readonly Eur: "EUR";
        readonly Hkd: "HKD";
        readonly Isk: "ISK";
        readonly Inr: "INR";
        readonly Ils: "ILS";
        readonly Jpy: "JPY";
        readonly Krw: "KRW";
        readonly Myr: "MYR";
        readonly Mxn: "MXN";
        readonly Ntd: "NTD";
        readonly Nzd: "NZD";
        readonly Ngn: "NGN";
        readonly Nok: "NOK";
        readonly Xpf: "XPF";
        readonly Pen: "PEN";
        readonly Php: "PHP";
        readonly Pln: "PLN";
        readonly Gbp: "GBP";
        readonly Sar: "SAR";
        readonly Sgd: "SGD";
        readonly Zar: "ZAR";
        readonly Sek: "SEK";
        readonly Chf: "CHF";
        readonly Aed: "AED";
        readonly Usd: "USD";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Currency: "currency";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCurrency$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Currency: "currency";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor3$Outbound;
    currency_value: number;
    currency_code?: string | null | undefined;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrencyToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrencyFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType2$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly Checkbox: "checkbox";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeCheckbox$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly Checkbox: "checkbox";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor2$Outbound;
    value: boolean;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckboxToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckboxFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActorType1$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$Outbound = {
    id?: string | null | undefined;
    type?: string | null | undefined;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1ToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1FromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesReferencedActorType$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ApiToken: "api-token";
        readonly WorkspaceMember: "workspace-member";
        readonly System: "system";
        readonly App: "app";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference$inboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference$outboundSchema: z.ZodNativeEnum<typeof GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference$inboundSchema` instead. */
    const inboundSchema: z.ZodNativeEnum<{
        readonly ActorReference: "actor-reference";
    }>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesAttributeTypeActorReference$outboundSchema` instead. */
    const outboundSchema: z.ZodNativeEnum<{
        readonly ActorReference: "actor-reference";
    }>;
}
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound = {
    active_from: string;
    active_until: string | null;
    created_by_actor: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesCreatedByActor1$Outbound;
    referenced_actor_type: string;
    referenced_actor_id: string | null;
    attribute_type: string;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReferenceToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReferenceFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnionToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnionFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataUnion, SDKValidationError>;
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse, z.ZodTypeDef, unknown>;
/** @internal */
export type GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$Outbound = {
    data: Array<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCheckbox$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDate$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataNumber$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataStatus$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRating$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataSelect$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataText$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataTimestamp$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataActorReference$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataCurrency$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataDomain$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataRecordReference$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataInteraction$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPersonalName$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataPhoneNumber$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataEmailAddress$Outbound | GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesDataLocation$Outbound>;
};
/** @internal */
export declare const GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$ {
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$inboundSchema` instead. */
    const inboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse, z.ZodTypeDef, unknown>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$outboundSchema` instead. */
    const outboundSchema: z.ZodType<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$Outbound, z.ZodTypeDef, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse>;
    /** @deprecated use `GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$Outbound` instead. */
    type Outbound = GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse$Outbound;
}
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponseToJSON(getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse: GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse): string;
export declare function getV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponseFromJSON(jsonString: string): SafeParseResult<GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesResponse, SDKValidationError>;
//# sourceMappingURL=getv2objectsobjectrecordsrecordidattributesattributevalues.d.ts.map