INPUT_OBJECT

CreateStudentQuoteInput

link GraphQL Schema definition

  • input CreateStudentQuoteInput {
  • # The student this quote should be created for.
  • studentId: Int!
  • # The language the quote will snapshot item names such as offering, fee, and
  • # promotion names.
  • languageId: Int!
  • # The country the student currently resides in. This may affect promotion
  • # eligibility.
  • eligibleStudentCurrentCountryId: Int
  • # The type of visa held by the student. This may affect promotion eligibility.
  • eligibleVisaTypeId: Int
  • # The date the quote should expire.
  • expiryDate: DateOnly
  • # The agent assigned to the quote. Default: access token user id if available.
  • agentId: Int
  • notes: String
  • studentQuoteOptions: [CreateStudentQuoteOptionInput]
  • }