Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 1.36 KB

File metadata and controls

43 lines (37 loc) · 1.36 KB

ProgramPrice

Properties

Name Type Description Notes
CustomerNumber Int32 [optional]
Size Double [optional]
ProgramDefinitionID Int32 [optional]
ProgramCode String [optional]
Description String [optional]
Installments Int32 [optional]
InstallmentPrice Double [optional] [readonly]
GrossPrice Double [optional] [readonly]
NetPrice Double [optional] [readonly]
TotalPriceWithTax Double [optional] [readonly]
TotalSavings Double [optional] [readonly]
Services ProgramServicePrice[] [optional]

Examples

  • Prepare the resource
$ProgramPrice = Initialize-RealGreenSaPSProgramPrice  -CustomerNumber null `
 -Size null `
 -ProgramDefinitionID null `
 -ProgramCode null `
 -Description null `
 -Installments null `
 -InstallmentPrice null `
 -GrossPrice null `
 -NetPrice null `
 -TotalPriceWithTax null `
 -TotalSavings null `
 -Services null
  • Convert the resource to JSON
$ProgramPrice | ConvertTo-JSON

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