Skip to content

Latest commit

 

History

History
49 lines (43 loc) · 1.4 KB

File metadata and controls

49 lines (43 loc) · 1.4 KB

CallLogWithNotes

Properties

Name Type Description Notes
Id Int32 [optional]
CustomerNumber Int32 [optional]
EnterDate System.DateTime [optional]
DueDate System.DateTime [optional]
Resolved Boolean [optional]
Viewed Boolean [optional]
AlarmSet Boolean [optional]
Name String [optional]
Company String [optional]
Phone String [optional]
Status String [optional]
EnteredBy String [optional]
AssignedTo String [optional]
Notes CallLogNote[] [optional]
CallTopic String[] [optional]

Examples

  • Prepare the resource
$CallLogWithNotes = Initialize-RealGreenSaPSCallLogWithNotes  -Id null `
 -CustomerNumber null `
 -EnterDate null `
 -DueDate null `
 -Resolved null `
 -Viewed null `
 -AlarmSet null `
 -Name null `
 -Company null `
 -Phone null `
 -Status null `
 -EnteredBy null `
 -AssignedTo null `
 -Notes null `
 -CallTopic null
  • Convert the resource to JSON
$CallLogWithNotes | ConvertTo-JSON

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