Property Attributes
Attributes
Optional attributes to be included with the registration, or null for none.
Declaration
public object Attributes { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Remarks
Use an anonmyous type to set additional properties, i.e
var request = new AfterPayDeviceRegistrationRequest()
{
Secret = "123",
DeviceName = "MyDevice",
Attributes = new
{
Branch = "Downtown Sydney",
SerialNumber = "A1B2C3"
}
}