Interface OperatorModel

Operators model such as province, base city, model, type (permanent or credit or both)

interface OperatorModel {
    base: string;
    model?: string;
    operator: string;
    province: string[];
    type: ("permanent" | "credit")[];
}

Properties

base: string
model?: string
operator: string
province: string[]
type: ("permanent" | "credit")[]