CommissionPolicy

Type:  Struct
Abstract:  no
Status:  Active
Java Class:  CommissionPolicy
Represents configuration for revenue sharing for the reseller.
id
Type: Long
XML Representation: attribute
Attributes:
Default Value
System identifier of a merchant.
isActive
Type: Boolean
XML Representation: attribute
Attributes:
Default Value
Indicates whether commissions are active or not.
The values can be the following:
'true' - commissions are active within the system
'false' - commissions are inactive within the system
startDate
Type: Date
XML Representation: attribute
Attributes:
Default Value
Date when commission collection to get started.
endDate
Type: Date
XML Representation: attribute
Attributes:
Default Value
Date when commission collection to be terminated.
resellerId
Type: Long
XML Representation: attribute
Attributes:
Default Value
System identifier of an associated reseller.
resellerCode
Type: String
XML Representation: attribute
Attributes:
Default Value
resellerName
Type: String
XML Representation: attribute
Attributes:
Default Value
Name of the associated reseller.

XML Sample:

<policy id="55"  isActive="false"  startDate="03022014"  endDate="03022014"  resellerCode="SRN"  resellerName="Sample Reseller Name" />

"<policy id=\"55\" isActive=\"false\" startDate=\"03022014\" endDate=\"03022014\" resellerCode=\"SRN\" resellerName=\"Sample Reseller Name\" />"

JSON Sample:

{
  "id": 55,
  "isActive": false,
  "startDate": "03022014",
  "endDate": "03022014",
  "resellerCode": "SRN",
  "resellerName": "Sample Reseller Name"
}

XURL Sample:

?id=55&isActive=false&startDate=03022014&endDate=03022014&resellerCode=SRN&resellerName=Sample+Reseller+Name&
id=55
isActive=false
startDate=03022014
endDate=03022014
resellerCode=SRN
resellerName=Sample Reseller Name