Skip to content

Commit

Permalink
Doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
docwho2 committed Nov 30, 2023
1 parent a0ea283 commit d14eaad
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public String getName() {

@Override
public String getDescription() {
return "Schedule a private Shopping session for 4 of more people at the store";
return "Schedule a private Shopping session for 4 of more people at the store, guide user asking for each parameter";
}

@Override
Expand All @@ -48,21 +48,21 @@ public Function<Request, Object> getExecutor() {

private static class Request {

@JsonPropertyDescription("Name of the customer who would like to schedule the shopping event")
@JsonPropertyDescription("Name of the customer who would like to schedule the shopping event, please ask them for their name.")
@JsonProperty(required = true)
public String customer_name;

@JsonPropertyDescription("The date in ISO format for the private shopping event")
@JsonProperty(required = true)
public LocalDate date;

@JsonPropertyDescription("The time for the private shopping event")
@JsonPropertyDescription("The time in ISO format for the private shopping event")
@JsonProperty(required = true)
public LocalTime time;

@JsonPropertyDescription("Optional name of the employee requested to provide the event, must be a valid employee first name")
@JsonProperty(required = false)
public String employee_first_name;
// @JsonPropertyDescription("Optional name of the employee requested to provide the event, must be a valid employee first name")
// @JsonProperty(required = false)
// public String employee_first_name;
}

/**
Expand Down

0 comments on commit d14eaad

Please sign in to comment.