@apideck/node
Version:
Apideck Node.js SDK
136 lines (130 loc) • 3.67 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists } from '../runtime'
import { Compensation, CompensationFromJSON, CompensationToJSON } from './Compensation'
import { PayrollTotals, PayrollTotalsFromJSON, PayrollTotalsToJSON } from './PayrollTotals'
/**
*
* @export
* @interface EmployeePayroll
*/
export interface EmployeePayroll {
/**
* A unique identifier for an object.
* @type {string}
* @memberof EmployeePayroll
*/
readonly id: string | null
/**
* Whether or not the payroll has been successfully processed. Note that processed payrolls cannot be updated.
* @type {boolean}
* @memberof EmployeePayroll
*/
processed: boolean | null
/**
* The date on which employees will be paid for the payroll.
* @type {string}
* @memberof EmployeePayroll
*/
check_date: string | null
/**
* The start date, inclusive, of the pay period.
* @type {string}
* @memberof EmployeePayroll
*/
start_date: string | null
/**
* The end date, inclusive, of the pay period.
* @type {string}
* @memberof EmployeePayroll
*/
end_date: string | null
/**
* ID of the employee
* @type {string}
* @memberof EmployeePayroll
*/
employee_id?: string | null
/**
* The unique identifier of the company.
* @type {string}
* @memberof EmployeePayroll
*/
company_id?: string | null
/**
* The date the payroll was processed.
* @type {string}
* @memberof EmployeePayroll
*/
processed_date?: string | null
/**
*
* @type {PayrollTotals}
* @memberof EmployeePayroll
*/
totals?: PayrollTotals
/**
* An array of compensations for the payroll.
* @type {Array<Compensation>}
* @memberof EmployeePayroll
*/
compensations?: Array<Compensation>
}
export function EmployeePayrollFromJSON(json: any): EmployeePayroll {
return EmployeePayrollFromJSONTyped(json, false)
}
export function EmployeePayrollFromJSONTyped(
json: any,
ignoreDiscriminator: boolean
): EmployeePayroll {
if (json === undefined || json === null) {
return json
}
return {
id: json['id'],
processed: json['processed'],
check_date: json['check_date'],
start_date: json['start_date'],
end_date: json['end_date'],
employee_id: !exists(json, 'employee_id') ? undefined : json['employee_id'],
company_id: !exists(json, 'company_id') ? undefined : json['company_id'],
processed_date: !exists(json, 'processed_date') ? undefined : json['processed_date'],
totals: !exists(json, 'totals') ? undefined : PayrollTotalsFromJSON(json['totals']),
compensations: !exists(json, 'compensations')
? undefined
: (json['compensations'] as Array<any>).map(CompensationFromJSON)
}
}
export function EmployeePayrollToJSON(value?: EmployeePayroll | null): any {
if (value === undefined) {
return undefined
}
if (value === null) {
return null
}
return {
processed: value.processed,
check_date: value.check_date,
start_date: value.start_date,
end_date: value.end_date,
employee_id: value.employee_id,
company_id: value.company_id,
processed_date: value.processed_date,
totals: PayrollTotalsToJSON(value.totals),
compensations:
value.compensations === undefined
? undefined
: (value.compensations as Array<any>).map(CompensationToJSON)
}
}