Sales Agreement Default Fields Input

Input representation of default values for the sales agreement fields.
JSON example with decimal quantity:
{
  "salesAgreementDefaultValues": {
    "salesAgreement": {
      "StartDate": "2020-01-01",
      "ScheduleFrequency": "Monthly",
      "ScheduleCount": "10"
    },
    "salesAgreementProduct": {
      "PricebookEntry": "01uxx00000091jOAAQ",
      "Name": "test-sap1",
      "InitialPlannedQtyValue": "1.5",
      "IsQuantityInDecimals": "true"
    }
  }
}
JSON example without decimal quantity:
{
  "salesAgreementDefaultValues": {
    "salesAgreement": {
      "StartDate": "2020-01-01",
      "ScheduleFrequency": "Monthly",
      "ScheduleCount": "10"
    },
    "salesAgreementProduct": {
      "PricebookEntry": "01uxx00000091jOAAQ",
      "Name": "test-sap1",
      "InitialPlannedQuantity": "1"
    }
  }
}
Properties
Name Type Description Required or Optional Available Version
salesAgreement Map<String, String> Default field values of the sales agreement entity that aren’t defined in the mapping definition. Optional 51.0
salesAgreement​​Product​ Map<String, String> Default field values of the sales agreement product entity that aren’t defined in the mapping definition. Optional 51.0

If isQuantityInDecimals is not specified or set to false, existing integer-based mappings will continue to work as before.