All properties on an Action Request Proxy class are generate according to there instance type, ex. int, string etc.
It would be nice if the generated could generate optional input parameters as nullable, and return null if they are not part of the OrganizationRequest payload
ex. i have a Number in the request that is OPTIONAL defined in the action (WholeNumber) X
it is still generated as
public int X { ... }
It shoul generate
public int? X { ... }
and return null if the request does not have a value for X.
All properties on an Action Request Proxy class are generate according to there instance type, ex. int, string etc.
It would be nice if the generated could generate optional input parameters as nullable, and return null if they are not part of the OrganizationRequest payload
ex. i have a Number in the request that is OPTIONAL defined in the action (WholeNumber) X
it is still generated as
public int X { ... }
It shoul generate
public int? X { ... }
and return null if the request does not have a value for X.