OBJECT
TranslationEntity
link GraphQL Schema definition
- type TranslationEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- : Boolean
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Account type the form-level translation applies to.
- : AccountTypeEntity
- # Appointment type the form-level translation applies to.
- : AppointmentTypeEntity
- # Contact type the form-level translation applies to.
- : ContactTypeEntity
- # Data option (dropdown/radio choice) this row translates. Set when label_type is
- # Data.
- : DataEntity
- # Field whose name/label this row translates. Set when label_type is Field,
- # FormField, or FormDescription.
- : FieldEntity
- # Lead type the form-level translation applies to.
- : LeadTypeEntity
- # Opportunity product relation type the form-level translation applies to.
- : OpptyProductRelationTypeEntity
- # Opportunity type the form-level translation applies to.
- : OpportunityTypeEntity
- # Product type the form-level translation applies to.
- : ProductTypeEntity
- # Project type the form-level translation applies to.
- : ProjectTypeEntity
- # Task type the form-level translation applies to.
- : TaskTypeEntity
- # Id of the account type.
- : ID
- # Id of the appointment type.
- : ID
- # Id of the contact type.
- : ID
- # Id of the translated data option.
- : ID
- # Translated text in German.
- : String
- # Translated text in US English.
- : String
- # Translated text in Spanish.
- : String
- # Id of the translated field.
- : ID
- # Field whose values are strictly defined with an enumeration of values.
- : FormTypeEnum
- # Field whose values are strictly defined with an enumeration of values.
- : TranslationLabelTypeEnum!
- # Id of the lead type.
- : ID
- # Id of the opportunity product relation type.
- : ID
- # Id of the opportunity type.
- : ID
- # Id of the product type.
- : ID
- # Id of the project type.
- : ID
- # Translated text in Brazilian Portuguese.
- : String
- # Id of the task type.
- : ID
- # True when the translation is published; false while it exists only as an
- # unpublished draft.
- : Boolean
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }