interface RawIssuesListResponseData {
    cities?: { objects: RawCity[] };
    countries?: { mainObjectID: null | number; objects: RawCountry[] };
    editProposals?: { objects: RawProposal[] };
    mapIssues: Partial;
    mapProblems?: { objects: RawProblem[] };
    mapUpdateRequests?: { objects: RawUpdateRequest[] };
    segmentSuggestions?: { objects: RawSegmentSuggestion[] };
    states?: { mainObjectID: null | number; objects: RawState[] };
    streets?: { objects: RawStreet[] };
    users?: { objects: RawUser[] };
    venues?: {
        categoryBrands:
            | null
            | Partial<
                {
                    CHARGING_STATION: string[];
                    GAS_STATION: string[];
                    PARKING_LOT: string[];
                },
            >;
        objects: RawVenue[];
        venueLevel: number;
    };
}

Hierarchy (View Summary)

Properties

cities?: { objects: RawCity[] }
countries?: { mainObjectID: null | number; objects: RawCountry[] }
editProposals?: { objects: RawProposal[] }
mapIssues: Partial
mapProblems?: { objects: RawProblem[] }
mapUpdateRequests?: { objects: RawUpdateRequest[] }
segmentSuggestions?: { objects: RawSegmentSuggestion[] }
states?: { mainObjectID: null | number; objects: RawState[] }
streets?: { objects: RawStreet[] }
users?: { objects: RawUser[] }
venues?: {
    categoryBrands:
        | null
        | Partial<
            {
                CHARGING_STATION: string[];
                GAS_STATION: string[];
                PARKING_LOT: string[];
            },
        >;
    objects: RawVenue[];
    venueLevel: number;
}