INPUT_OBJECT
CreateOrUpdateCloudObjectTemplateInput
link GraphQL Schema definition
- input CreateOrUpdateCloudObjectTemplateInput {
- # 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
- # Field whose values are strictly defined with an enumeration of values.
- : CloudObjectTemplateStatusEnum
- # Entity type the template renders (e.g. Account, Opportunity, Quote). For custom
- # entities, the value is "CustomEntity" and the API name is exposed via
- # template_entity_api_name.
- : EntityNameEnum
- # 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
- # API name of the custom entity the template renders. Set only when
- # template_entity_name is "CustomEntity"; otherwise empty.
- : String
- }