SubscriptionWithCreditLimitDto Data Type

The Class SubscriptionWithCreditLimitDto.

Available Since
Nov 13, 2013
Subtypes
SubscriptionWithCreditLimitUpdateDto
Implemented Interfaces
Serializable
Properties
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
}