ObjFileSource
Struct for object file source data in a add object with files call.
Name | Description | Type |
---|---|---|
type | The type of the object file source. | ObjFileSourceType |
data | Object file source type - specific data as a union. | ObjFileSourceUnion |
Example
{
"type": 4 /* Enum: ObjFileSourceType */,
"data": {
"blank_template": {
"name": "<!< Blank template file name.>"
},
"user_defined_template": {
"obj_id": {
"type": 0,
"item_id": {
"internal_id": 0,
"external_repository_id": {
"connection": "<!< The external repository connection identifier.>",
"item": "<item>"
}
}
}
},
"uploaded_file": {
"upload_id": 0,
"title": "<!< The title of the file.>",
"extension": "<extension>",
"size": 0
},
"uploaded_files": {
"uploaded_file_array": [] /* Array of UploadedFile */
}
}
}