MapAttributeValueDTO

A DTO that represents a list of AttributeValues.

Sub Type Property: "_type" : "Interface"

Fields

Type
Name
Description
Optional
Default Value
value
The list of AttributeValues.
false
 
Boolean  
writable
The flag to indicate if this attribute is writable.
false
 
Boolean  
readable
The flag to indicate if this attribute is readable.
false
 
status
DTO that may contain status messages for the AttributeValue.
false
 

Example

{
	"_type" : "Interface",
	"value" : {
		"string1" : {
			"_type" : "String",
			"value" : "Hello World!",
			"writable" : true,
			"readable" : true,
			"status" : null
		},
		"string2" : {
			"_type" : "String",
			"value" : "Hello World!",
			"writable" : true,
			"readable" : true,
			"status" : null
		}
	},
	"writable" : true,
	"readable" : true,
	"status" : null
}