interface NameStringValuePairConfigModel {
    name: string;
    value: string;
}

Properties

Properties

name: string

The name of the pair. Property is required and must be non-null.

value: string

The value of the pair. Property must be present, but if null the behavior is dependent on usage context.