Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/v4/payroll-uk/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,7 @@
"leaveType" : {
"type" : "string",
"description" : "The type of statutory leave",
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental" ]
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental", "Bereavement" ]
},
"balanceRemaining" : {
"type" : "number",
Expand Down Expand Up @@ -2000,7 +2000,7 @@
"type" : {
"type" : "string",
"description" : "The category of statutory leave",
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental" ]
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental", "Bereavement" ]
},
"startDate" : {
"type" : "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ public enum LeaveTypeEnum {
PATERNITY("Paternity"),

/** SHAREDPARENTAL */
SHAREDPARENTAL("Sharedparental");
SHAREDPARENTAL("Sharedparental"),

/** BEREAVEMENT */
BEREAVEMENT("Bereavement");

private String value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ public enum TypeEnum {
PATERNITY("Paternity"),

/** SHAREDPARENTAL */
SHAREDPARENTAL("Sharedparental");
SHAREDPARENTAL("Sharedparental"),

/** BEREAVEMENT */
BEREAVEMENT("Bereavement");

private String value;

Expand Down