OBJECT
Customer
A customer of a session
link GraphQL Schema definition
- type Customer {
- : Subuser
- # N° de compte client en compta
- : String
- # Situation de sous-traitance ?
- : Boolean
- # Financement inconnu (situation de sous-traitance)
- : Boolean
- # Convention file if it has been generated
- : GeneratedFile
- # Convention signée ?
- : Boolean
- # DEPRECATED - Use `conventionFile` instead - URL to download the convention file
- # if it has been generated
- : String @deprecated( reason: "Use `conventionFile` instead" )
- : [CustomerCost]
- : CrmStatus
- : [CustomerFunding]
- # List of trainee of the customer - only work with company
- : [CustomerTrainee]
- # Description of the customer (can be a company or a trainee)
- : CustomerEntity
- # Nombre d'apprenants à compter dans le devis
- : Int
- # Client étranger
- : Boolean
- : ID
- # Creation date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- # Particulier en situation de chômage
- : Boolean
- # Mode de calcul manuel des produits BPF ?
- : Boolean
- # Montant manuel de produit BPF (coûts de formation)
- : Float
- # Saisie manuelle des heures BPF ?
- : Boolean
- # Nombre d'heures BPF manuel
- : Int
- # Montant manuel de produit BPF (frais annexes)
- : Float
- # Montant manuel de produit BPF (outils pédagogiques)
- : Float
- # Nombre d'apprenants BPF manuel
- : Int
- # Order form number associated to the customer. Must be less than 50 characters.
- : String
- # Étape du tunnel de vente
- : Int
- # Attentes du client
- : String
- # Conditions de succès
- : String
- # DEPRECATED - Deprecated - Devis accepté ?
- : Boolean @deprecated( reason: "Deprecated" )
- # Tarif spécial ?
- : Boolean
- # ID client stripe
- : String
- # DEPRECATED - Use sebsessions instead
- : [ID] @deprecated( reason: "Use sebsessions instead" )
- : [Subsession]
- # Position of the customer in the pipeline. You can check the corresponding state
- # with `pipeline_state` call.
- : TrainingSession
- # Last update date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- # Taux de TVA du client
- : Float
- }