Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 1.24 KB

File metadata and controls

43 lines (37 loc) · 1.24 KB

Batch

Properties

Name Type Description Notes
Id Int32 [optional]
PrintDate System.DateTime [optional]
EmployeeId String [optional]
Type BatchType [optional]
TypeDescription String [optional] [readonly]
UndoDate System.DateTime [optional]
UndoEmployeeId String [optional]
ScheduleDate System.DateTime [optional]
DriveDist Double [optional]
LunchTime Int32 [optional]
LunchLength Int32 [optional]
BatchCount Int32 [optional]

Examples

  • Prepare the resource
$Batch = Initialize-RealGreenSaPSBatch  -Id null `
 -PrintDate null `
 -EmployeeId null `
 -Type null `
 -TypeDescription null `
 -UndoDate null `
 -UndoEmployeeId null `
 -ScheduleDate null `
 -DriveDist null `
 -LunchTime null `
 -LunchLength null `
 -BatchCount null
  • Convert the resource to JSON
$Batch | ConvertTo-JSON

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