Skip to content

Commit

Permalink
Automated update by SDK Generator version:3.4.1 commit:08e81be
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 10, 2024
1 parent 8e87968 commit 6a15929
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/gen/docs/models/TimeOffRequestsFilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
`updated_since` | **string** | Minimum date the time off request was last created or modified | [optional]
`employee_id` | **string** | Employee ID | [optional]
`time_off_request_status` | **string** | Time off request status to filter on | [optional]
`company_id` | **string** | Company ID | [optional]



Expand Down
12 changes: 10 additions & 2 deletions src/gen/models/TimeOffRequestsFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ export interface TimeOffRequestsFilter {
* @memberof TimeOffRequestsFilter
*/
time_off_request_status?: TimeOffRequestsFilterTimeOffRequestStatus
/**
* Company ID
* @type {string}
* @memberof TimeOffRequestsFilter
*/
company_id?: string
}

/**
Expand Down Expand Up @@ -82,7 +88,8 @@ export function TimeOffRequestsFilterFromJSONTyped(
employee_id: !exists(json, 'employee_id') ? undefined : json['employee_id'],
time_off_request_status: !exists(json, 'time_off_request_status')
? undefined
: json['time_off_request_status']
: json['time_off_request_status'],
company_id: !exists(json, 'company_id') ? undefined : json['company_id']
}
}

Expand All @@ -98,6 +105,7 @@ export function TimeOffRequestsFilterToJSON(value?: TimeOffRequestsFilter | null
end_date: value.end_date,
updated_since: value.updated_since,
employee_id: value.employee_id,
time_off_request_status: value.time_off_request_status
time_off_request_status: value.time_off_request_status,
company_id: value.company_id
}
}

0 comments on commit 6a15929

Please sign in to comment.