interface UmbMediaValueModel<ValueType> {
    alias: string;
    culture: null | string;
    segment: null | string;
    value: ValueType;
}

Type Parameters

  • ValueType = unknown

Properties

alias: string
culture: null | string
segment: null | string
value: ValueType
""