INPUT_OBJECT

UpdateStudentQuoteInput

link GraphQL Schema definition

  • input UpdateStudentQuoteInput {
  • # The student this quote should assigned to.
  • #
  • # ATTN: updating this field will result in re-calculation of all offering prices
  • 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.
  • #
  • # ATTN: updating this field will result in re-calculation of all offering prices
  • eligibleStudentCurrentCountryId: Int
  • # The type of visa held by the student. This may affect promotion eligibility.
  • #
  • # ATTN: updating this field will result in re-calculation of all offering prices
  • 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
  • }