INPUT_OBJECT
CreateOrUpdateCloudObjectInput
link GraphQL Schema definition
- input CreateOrUpdateCloudObjectInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the producing application.
- : ID
- # Id of the company folder, or empty when the object is not stored in the company
- # tree.
- : ID
- # Id of the uploading user.
- : ID
- # File name (with extension) used when downloading the object.
- : String
- # When true, the object can be served via a public URL (see public_url).
- : Boolean
- # Mime-type of the cloud object Is detected from content.
- : String
- # Additional metadata about the object (e.g. image dimensions, audio duration), as
- # a JSON object.
- : JSONString
- # Field whose values are strictly defined with an enumeration of values.
- : CloudObjectTypeEnum
- # Field whose values are strictly defined with an enumeration of values.
- : UploadSourceEnum
- # URL of the object. If URL scheme is not defined "http://" is automatically
- # prepended to supplied URL.
- : String
- # Revision when entity was lastly changed.
- : Int
- # Data content of the object.
- : Base64
- }