This object defines inputs to a search for content for display or playback.

MatterSpecification.v13.Cluster § 6.7.5.6

interface Parameter {
    externalIdList?: TypeFromFields<{
        name: FieldType<string>;
        value: FieldType<string>;
    }>[];
    type: ContentLauncher.ParameterEnum;
    value: string;
}

Hierarchy (view full)

Properties

externalIdList?: TypeFromFields<{
    name: FieldType<string>;
    value: FieldType<string>;
}>[] = ...

This field shall indicate the list of additional external content identifiers.

MatterSpecification.v13.Cluster § 6.7.5.6.3

This field shall indicate the entity type.

MatterSpecification.v13.Cluster § 6.7.5.6.1

value: string = ...

This field shall indicate the entity value, which is a search string, ex. “Manchester by the Sea”.

MatterSpecification.v13.Cluster § 6.7.5.6.2