Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

Latest commit

 

History

History
53 lines (27 loc) · 2.19 KB

CustomFieldCompactAllOf.md

File metadata and controls

53 lines (27 loc) · 2.19 KB

Asana.CustomFieldCompactAllOf

Properties

Name Type Description Notes
name String The name of the custom field. [optional]
resourceSubtype String The type of the custom field. Must be one of the given values. [optional]
type String Deprecated: new integrations should prefer the resource_subtype field. The type of the custom field. Must be one of the given values. [optional] [readonly]
enumOptions [EnumOption] Conditional. Only relevant for custom fields of type `enum`. This array specifies the possible values which an `enum` custom field can adopt. To modify the enum options, refer to working with enum options. [optional]
enabled Boolean Conditional. Determines if the custom field is enabled or not. [optional]
dateValue CustomFieldCompactAllOfDateValue [optional]
enumValue EnumOption [optional]
multiEnumValues [EnumOption] Conditional. Only relevant for custom fields of type `multi_enum`. This object is the chosen values of a `multi_enum` custom field. [optional]
numberValue Number Conditional. This number is the value of a `number` custom field. [optional]
textValue String Conditional. This string is the value of a `text` custom field. [optional]
displayValue String A string representation for the value of the custom field. Integrations that don't require the underlying type should use this field to read values. Using this field will future-proof an app against new custom field types. [optional] [readonly]

Enum: ResourceSubtypeEnum

  • text (value: "text")

  • enum (value: "enum")

  • multi_enum (value: "multi_enum")

  • number (value: "number")

  • date (value: "date")

  • people (value: "people")

Enum: TypeEnum

  • text (value: "text")

  • enum (value: "enum")

  • multi_enum (value: "multi_enum")

  • number (value: "number")