CustomFieldModel
CustomFieldModel
CustomFieldModel class for custom field.
| Name | Type | Description |
|---|---|---|
| Title | string | Title for the custom field. |
| ContentType | string | File content type. |
| Tags | string | Tags for the custom field. |
CustomFieldModel
CustomFieldModel constructor
| Name | Type | Description |
|---|---|---|
| filePath (required) | String | File path to upload custom field. |
| contentType (required) | string | Content type for the file to be uploaded. |
| title (required) | string | Title for the custom field. |
| tags | string | Tags for the custom field. |
| Name | Type | Description |
|---|---|---|
| stream (required) | Stream | File stream for the custom field to be upload. |
| contentType (required) | string | Content type for the file stream. |
| title (required) | string | Title for the custom field. |
| tag | string | Tags for the custom field. |
| Name | Type | Description |
|---|---|---|
| bytes (required) | byte[] | Bytes for the file to be uploaded. |
| contentType (required) | string | Content type for the file bytes. |
| title (required) | string | Title for the custom field. |
| tags | string | Tags for the custom field. |
| Name | Type | Description |
|---|---|---|
| byteArray (required) | ByteArrayContent | Byte array content of file to be uploaded. |
| contentType (required) | string | Content type for the file byte content |
| title (required) | string | Title for the custom field. |
| tags | string | Tags for the custom field |
GetHttpContent
Get http content returns the request body content.