Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 1.31 KB

File metadata and controls

45 lines (39 loc) · 1.31 KB

APIEmployee

Properties

Name Type Description Notes
Id String [optional]
Name String [optional]
Email String [optional]
Position String [optional]
Department String [optional]
DateOfBirth System.DateTime [optional]
DateOfHire System.DateTime [optional]
DateOfTermination System.DateTime [optional]
Comments String [optional]
Active Boolean [optional]
ApplicatorLicenseNumber String [optional]
EmployeeNumber String [optional]
CompanyID Int32 [optional]

Examples

  • Prepare the resource
$APIEmployee = Initialize-RealGreenSaPSAPIEmployee  -Id null `
 -Name null `
 -Email null `
 -Position null `
 -Department null `
 -DateOfBirth null `
 -DateOfHire null `
 -DateOfTermination null `
 -Comments null `
 -Active null `
 -ApplicatorLicenseNumber null `
 -EmployeeNumber null `
 -CompanyID null
  • Convert the resource to JSON
$APIEmployee | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]