action just_eat_update_order_time { label: "Update the restaurant's delivery and collection lead times" description: "Update the restaurant's delivery and collection lead times" provider: just_eat method: PUT path: "/restaurants/{tenant}/{restaurantId}/ordertimes/{dayOfWeek}/{serviceType}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } dayOfWeek: { type: "string" enum: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] } lowerBoundMinutes: { type: "integer" format: "int32" description: "Order time lower bound value, in minutes." } restaurantId: { type: "string" } serviceType: { type: "string" enum: ["Delivery", "Collection"] } tenant: { type: "string" } upperBoundMinutes: { type: "integer" format: "int32" description: "Order time upper bound value, in minutes." } } required: ["Authorization", "dayOfWeek", "restaurantId", "serviceType", "tenant"] additionalProperties: false } output: { type: "object" additionalProperties: true } }