Alokai

ScheduleReplenishmentForm

Schedule replenishment form object. ScheduleReplenishmentForm

export interface ScheduleReplenishmentForm {
	'daysOfWeek'?: Array<ScheduleReplenishmentFormDaysOfWeekEnum>;
	'nthDayOfMonth'?: string;
	'numberOfDays'?: string;
	'numberOfWeeks'?: string;
	'recurrencePeriod'?: string;
	'replenishmentStartDate'?: string;
}

Properties

NameRequiredTypeDescription
daysOfWeekOptionalArray<ScheduleReplenishmentFormDaysOfWeekEnum>List of days of week on which replenishment should occur. Mandatory with 'recurrencePeriod=WEEKLY'. {Array<string>} ScheduleReplenishmentForm
nthDayOfMonthOptionalstringOn which date of month replenishment should be activated. Mandatory with 'recurrencePeriod=MONTHLY'. {string} ScheduleReplenishmentForm
numberOfDaysOptionalstringHow frequent replenishment should be activated expressed in days. Mandatory with 'recurrencePeriod=DAILY'. {string} ScheduleReplenishmentForm
numberOfWeeksOptionalstringHow frequent replenishment should be activated expressed in weeks. Mandatory with 'recurrencePeriod=WEEKLY'. {string} ScheduleReplenishmentForm
recurrencePeriodOptionalstringReplenishment recurrence period. Available values are DAILY, WEEKLY and MONTHLY. DAILY requires 'numberOfDays'. WEEKLY requires 'daysOfWeek' AND 'numberOfWeeks'. MONTHLY requires 'nthDayOfMonth'. {string} ScheduleReplenishmentForm
replenishmentStartDateOptionalstringFirst day for replenishment order {string} ScheduleReplenishmentForm

Referenced Types

On this page