INPUT_OBJECT

UpdateOpptyRecurrenceNoOpptyBackrefInput

link GraphQL Schema definition

  • input UpdateOpptyRecurrenceNoOpptyBackrefInput {
  • applyRecurrence: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Bit Flag field, with limited combination of integer values.
  • #
  • # Options:
  • # Won = 1 (0b01)
  • # Lost = 2 (0b10) It is required if the recurrence is set. Conditionally generated
  • # opportunity as bitwise operation where bit: 1 bit - won 2 bit - loste.g. if the
  • # value is 1 => to generate only when opportunity is won.
  • condition: Int
  • # Field whose values are strictly defined with an enumeration of values. The day
  • # of the month. This setting is applicable only for
  • # RecurrenceTypeEnum.MonthlyRelative and RecurrenceTypeEnum.YearlyRelative.
  • day: DateDayEnum
  • # Bit Flag field, with limited combination of integer values.
  • #
  • # Options:
  • # Sunday = 1 (0b0000001)
  • # Monday = 2 (0b0000010)
  • # Tuesday = 4 (0b0000100)
  • # Wednesday = 8 (0b0001000)
  • # Thursday = 16 (0b0010000)
  • # Friday = 32 (0b0100000)
  • # Saturday = 64 (0b1000000) The days of week in bit mask, number where every bit
  • # means one day (e.g. 0010001 = every Monday and Friday), bit 0 is Monday. This
  • # setting is applicable only for RecurrenceTypeEnum.Weekly,
  • # RecurrenceTypeEnum.MonthlyAbsolute, RecurrenceTypeEnum.YearlyAbsolute.
  • dayOfWeek: Int
  • # Date information. The last date when no more other items should be created.
  • endDate: Date
  • # Field whose values are strictly defined with an enumeration of values. The
  • # number of month this setting is applicable only for
  • # RecurrenceTypeEnum.YearlyAbsolute and RecurrenceTypeEnum.YearlyRelative.
  • month: DateMonthEnum
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • # The number of units of a given recurrence type between occurrences according to
  • # RecurrenceTypeEnum.
  • occurEvery: Int
  • # Whole natural number. The number of remaining occurrences. Each time a new
  • # one is created, it decreases. When item is set to 1, only last one can be
  • # created. If it is set to 0, recurrence is stopped. If -1, no limits are
  • # applied.
  • occurrencesCount: Int
  • # Date information. The effective start date of recurrence, which means each
  • # next recurrence must be on or after this date.
  • startDate: Date
  • # Relation to single entity instance. Step related to recurrence. A new
  • # opportunity will create to this step.
  • stepId: ID
  • # Field whose values are strictly defined with an enumeration of values.
  • type: RecurrenceTypeEnum
  • # Field whose values are strictly defined with an enumeration of values. The week
  • # of month. This setting is applicable only for
  • # RecurrenceTypeEnum.MonthlyAbsolute and RecurrenceTypeEnum.YearlyAbsolute.
  • week: DateWeekEnum
  • # Revision when entity was lastly changed.
  • revision: Int
  • }