CCPAttributeValue
Representation of an attribute value CCPAttributeValue
export interface CCPAttributeValue {
'images'?: Array<Image>;
'key'?: string;
'langDepName'?: string;
'messages'?: Array<CCPMessage>;
'name'?: string;
'readonly'?: boolean;
'selected'?: boolean;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
images | Optional | Array<Image> | List of images {Array<Image>} CCPAttributeValue |
key | Optional | string | Value key {string} CCPAttributeValue |
langDepName | Optional | string | Language dependent value description {string} CCPAttributeValue |
messages | Optional | Array<CCPMessage> | Message list {Array<CCPMessage>} CCPAttributeValue |
name | Optional | string | Language independent value name {string} CCPAttributeValue |
readonly | Optional | boolean | Indicates if value is read-only {boolean} CCPAttributeValue |
selected | Optional | boolean | Indicates if value is selected {boolean} CCPAttributeValue |