OBJECT
AppointmentScheduleEntity
link GraphQL Schema definition
- type AppointmentScheduleEntity {
- # 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!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Relation to single entity instance. Target entity is re-used and not deleted
- # on de-association.
- #
- # Examples:
- #
- # Opportunity.owner -> Client, the Client is reused for many opportunities.
- #
- # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
- #
- : ClientEntity
- : AppointmentTypeEntity
- : ClientEntity
- : CompanyEmailEntity
- # String value.
- : String!
- # Generic field wrapping sqlalchemy column, configurable by constructor.
- #
- # Good for one-of fields / generated fields.
- #
- : Float
- # String value.
- : String!
- # Field whose values are strictly defined with an enumeration of values.
- : AppointmentScheduleLocationTypeEnum
- # Relation to single entity instance.
- : ID!
- # String value.
- : String!
- # Boolean value.
- : Boolean!
- # Relation to single entity instance.
- : ID!
- # Generic field wrapping sqlalchemy column, configurable by constructor.
- #
- # Good for one-of fields / generated fields.
- #
- : String
- # Whole natural number.
- : Int!
- # Whole natural number.
- : Int!
- # Field whose values are strictly defined with an enumeration of values.
- : AppointmentScheduleConfirmationPageTypeEnum
- # URL - HTTP address.
- : String
- # Boolean value.
- : Boolean!
- # Whole natural number.
- : Int!
- # Name of the entity and its default text representation.
- : String!
- # Relation to single entity instance.
- : ID!
- # Whole natural number.
- : Int!
- # Date information.
- : Date
- # Date information.
- : Date
- # Field whose values are strictly defined with an enumeration of values.
- : AppointmentSchedulePlanningTypeEnum
- # Boolean value.
- : Boolean!
- # Whole natural number.
- : Int!
- # Field whose values are strictly defined with an enumeration of values.
- : AppointmentScheduleReminderOffsetTypeEnum
- # Relation to single entity instance.
- : ID
- # String value.
- : String!
- # Whole natural number.
- : Int!
- # Field whose values are strictly defined with an enumeration of values.
- : AppointmentScheduleTypeEnum
- # String value.
- : String!
- : [AppointmentScheduleAdditionalField!]!
- : AppointmentScheduleAvailability!
- : [AppointmentScheduleInvitee!]!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Arguments
- # tzId: [Not documented]
- # from: [Not documented]
- # to: [Not documented]
- (: String!, : Date!, : Date!): [DateTime!]!
- : Int!
- : Int!
- : Int!
- : Int!
- }