ObjectTypeField

data class ObjectTypeField(val contentType: ObjectTypeFieldContentType? = null, val source: String? = null, val target: String? = null)

Represents a field in a ProfileObjectType.

Constructors

Link copied to clipboard
constructor(contentType: ObjectTypeFieldContentType? = null, source: String? = null, target: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
val source: String? = null

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.

Link copied to clipboard
val target: String? = null

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