The Class SubscriptionWithCreditLimitDto.
name | data type | description |
---|---|---|
userId | string | The user id. |
organizationId | string | The organization id. |
offerId | string | The offer id. |
servicesToAdd | array of ServiceToAddDto | The services to add. |
creditLimits | array of CreditLimitDto | The credit limits. |
subscriptionDate | number | The subscription date. |
Example
{ "userId" : "...", "organizationId" : "...", "offerId" : "...", "servicesToAdd" : [ { "serviceId" : "...", "subscriptionDate" : 12345, "param1" : "...", "param2" : "...", "param3" : "..." }, { "serviceId" : "...", "subscriptionDate" : 12345, "param1" : "...", "param2" : "...", "param3" : "..." } ], "creditLimits" : [ { "organizationId" : "...", "creditLimit" : 12345.0 }, { "organizationId" : "...", "creditLimit" : 12345.0 } ], "subscriptionDate" : 12345 }