UserAccountDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
billingAccount string
subscriptionDate number
terminationDate number
status AccountStatusEnum
statusDate number
terminationReason string
subscriptions SubscriptionsDto Use for GET / LIST only.
Properties inherited from AccountDto
code string
description string
externalRef1 string
externalRef2 string
name NameDto
address AddressDto
businessAccountModel BusinessEntityDto
customFields CustomFieldsDto
Properties inherited from BusinessDto
updatedCode string

Example

{
  "billingAccount" : "...",
  "subscriptionDate" : 12345,
  "terminationDate" : 12345,
  "status" : "TERMINATED",
  "statusDate" : 12345,
  "terminationReason" : "...",
  "subscriptions" : {
    "subscription" : [ {
      "code" : "...",
      "description" : "...",
      "userAccount" : "...",
      "offerTemplate" : "...",
      "subscriptionDate" : 12345,
      "terminationDate" : 12345,
      "endAgreementDate" : 12345,
      "status" : "RESILIATED",
      "statusDate" : 12345,
      "customFields" : { },
      "accesses" : { },
      "services" : { },
      "products" : { },
      "terminationReason" : "...",
      "updatedCode" : "..."
    }, {
      "code" : "...",
      "description" : "...",
      "userAccount" : "...",
      "offerTemplate" : "...",
      "subscriptionDate" : 12345,
      "terminationDate" : 12345,
      "endAgreementDate" : 12345,
      "status" : "CLOSED",
      "statusDate" : 12345,
      "customFields" : { },
      "accesses" : { },
      "services" : { },
      "products" : { },
      "terminationReason" : "...",
      "updatedCode" : "..."
    } ]
  },
  "code" : "...",
  "description" : "...",
  "externalRef1" : "...",
  "externalRef2" : "...",
  "name" : {
    "title" : "...",
    "firstName" : "...",
    "lastName" : "..."
  },
  "address" : {
    "address1" : "...",
    "address2" : "...",
    "address3" : "...",
    "zipCode" : "...",
    "city" : "...",
    "country" : "...",
    "state" : "..."
  },
  "businessAccountModel" : {
    "code" : "...",
    "description" : "..."
  },
  "customFields" : {
    "customField" : [ {
      "code" : "...",
      "valueDate" : 12345,
      "valuePeriodStartDate" : 12345,
      "valuePeriodEndDate" : 12345,
      "valuePeriodPriority" : 12345,
      "stringValue" : "...",
      "dateValue" : 12345,
      "longValue" : 12345,
      "doubleValue" : 12345.0,
      "value" : [ { }, { } ],
      "mapValue" : {
        "property1" : { },
        "property2" : { }
      },
      "entityReferenceValue" : { },
      "indexType" : "STORE_ONLY"
    }, {
      "code" : "...",
      "valueDate" : 12345,
      "valuePeriodStartDate" : 12345,
      "valuePeriodEndDate" : 12345,
      "valuePeriodPriority" : 12345,
      "stringValue" : "...",
      "dateValue" : 12345,
      "longValue" : 12345,
      "doubleValue" : 12345.0,
      "value" : [ { }, { } ],
      "mapValue" : {
        "property1" : { },
        "property2" : { }
      },
      "entityReferenceValue" : { },
      "indexType" : "STORE_ONLY"
    } ]
  },
  "updatedCode" : "..."
}