Get Domain Object Type
| customerprofiles_get_domain_object_type | R Documentation |
Return a DomainObjectType for the input Domain and ObjectType names¶
Description¶
Return a DomainObjectType for the input Domain and ObjectType names.
Usage¶
customerprofiles_get_domain_object_type(DomainName, ObjectTypeName)
Arguments¶
DomainName |
[required] The unique name of the domain. |
ObjectTypeName |
[required] The unique name of the domain object type. |
Value¶
A list with the following syntax:
list(
ObjectTypeName = "string",
Description = "string",
EncryptionKey = "string",
Fields = list(
list(
Source = "string",
Target = "string",
ContentType = "STRING"|"NUMBER",
FeatureType = "TEXTUAL"|"CATEGORICAL"
)
),
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
)
)
Request syntax¶
svc$get_domain_object_type(
DomainName = "string",
ObjectTypeName = "string"
)