OBJECT

StudentQuote

link GraphQL Schema definition

  • type StudentQuote {
  • # The primary ID generated by the system.
  • studentQuoteId: Int!
  • # An alternate ID that can be set by the agent.
  • externalId: String
  • studentQuoteStatusId: Int!
  • # A generated ID that can be used outside of Edvisor (for a publicly facing web
  • # site for example).
  • obscuredId: String
  • # The agency owning the quote.
  • agencyId: Int
  • # The student the quote is for.
  • studentId: Int!
  • agentUserId: Int @deprecated( reason: "deprecated in favor of agentId" )
  • # The agent the quote is assigned to.
  • agentId: Int
  • isTemplate: Boolean!
  • isB2CGenerated: Boolean
  • templateName: String
  • issued: DateTime
  • viewed: DateTime
  • decisionMade: DateTime
  • expires: DateTime @deprecated( reason: "deprecated in favor of expiryDate" )
  • # The date the quote expires.
  • expiryDate: DateOnly
  • # The language the quote item names such as offering, fee, and promotion names are
  • # translated to.
  • languageId: Int
  • notes: String
  • filterStudentMinAge: Int
  • filterStudentMaxAge: Int
  • filterStudentCurrentCountryId: Int
  • filterEligibleStudentNationalityCountryId: Int
  • isHidePriceBreakdown: Boolean
  • filterEligibleVisaTypeId: Int
  • created: DateTime!
  • modified: DateTime
  • studentQuoteStatus: StudentQuoteStatus
  • # The agency owning the quote.
  • agency: Agency
  • # The student the quote is for.
  • student: Student
  • # The agent the quote is assigned to.
  • agentUser: User
  • # The language the quote item names such as offering, fee, and promotion names are
  • # translated to.
  • language: Language
  • filterStudentCurrentCountry: Country
  • filterEligibleStudentNationalityCountry: Country
  • filterEligibleVisaType: VisaType
  • studentQuoteOptions: [StudentQuoteOption]
  • studentQuoteRateSnapshots: [StudentQuoteRateSnapshot]
  • agencyQuoteCustomization: AgencyQuoteCustomization
  • }