StringAttributeValueDTO

A DTO that represents a String AttributeValue.

Sub Type Property: "_type" : "String"

Fields

Type
Name
Description
Optional
Default Value
String  
value
The String value of this attribute.
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" : "String",
	"value" : "Hello World!",
	"writable" : true,
	"readable" : true,
	"status" : null
}