interface ServiceItem {
    autoSubfunc?: boolean;
    desc?: string;
    generateConfigs?: Record<string, string>;
    id: string;
    isNegativeResponse?: boolean;
    name: string;
    nrc?: number;
    params: Param[];
    respParams: Param[];
    serviceId: ServiceId;
    subfunc?: string;
    suppress?: boolean;
}

Properties

autoSubfunc?: boolean
desc?: string
generateConfigs?: Record<string, string>
id: string
isNegativeResponse?: boolean
name: string
nrc?: number
params: Param[]
respParams: Param[]
serviceId: ServiceId
subfunc?: string
suppress?: boolean