Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ObjectTypeField

import type { ObjectTypeField } from "https://aws-api.deno.dev/v0.3/services/customerprofiles.ts?docs=full";

Represents a field in a ProfileObjectType.

interface ObjectTypeField {
ContentType?: FieldContentType | null;
Source?: string | null;
Target?: string | null;
}

§Properties

§
ContentType?: FieldContentType | null
[src]

The content type of the field. Used for determining equality when searching.

§
Source?: string | null
[src]

A field of a ProfileObject. For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.

§
Target?: string | null
[src]

The location of the data in the standard ProfileObject model. For example: _profile.Address.PostalCode.