OBJECT
StudentQuote
link GraphQL Schema definition
- type StudentQuote {
- # The primary ID generated by the system.
- : Int!
- # An alternate ID that can be set by the agent.
- : String
- : Int!
- # A generated ID that can be used outside of Edvisor (for a publicly facing web
- # site for example).
- : String
- # The agency owning the quote.
- : Int
- # The student the quote is for.
- : Int!
- : Int @deprecated( reason: "deprecated in favor of agentId" )
- # The agent the quote is assigned to.
- : Int
- : Boolean!
- : Boolean
- : String
- : DateTime
- : DateTime
- : DateTime
- : DateTime @deprecated( reason: "deprecated in favor of expiryDate" )
- # The date the quote expires.
- : DateOnly
- # The language the quote item names such as offering, fee, and promotion names are
- # translated to.
- : Int
- : String
- : Int
- : Int
- : Int
- : Int
- : Boolean
- : Int
- : DateTime!
- : DateTime
- : StudentQuoteStatus
- # The agency owning the quote.
- : Agency
- # The student the quote is for.
- : Student
- # The agent the quote is assigned to.
- : User
- # The language the quote item names such as offering, fee, and promotion names are
- # translated to.
- : Language
- : Country
- : Country
- : VisaType
- : [StudentQuoteOption]
- : [StudentQuoteRateSnapshot]
- : AgencyQuoteCustomization
- }