StoreCount
Representation of a Store Count StoreCount
export interface StoreCount {
'count'?: number;
'isoCode'?: string;
'name'?: string;
'storeCountDataList'?: Array<StoreCount>;
'type'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
count | Optional | number | Count {number} StoreCount |
isoCode | Optional | string | Iso code of store {string} StoreCount |
name | Optional | string | Name of store count {string} StoreCount |
storeCountDataList | Optional | Array<StoreCount> | List of store counts {Array<StoreCount>} StoreCount |
type | Optional | string | Type of store count {string} StoreCount |