Interface RaainApiRadarsFindAllMineResponse

interface RaainApiRadarsFindAllMineResponse {
    pagination: {
        page: number;
        limit: number;
        total: number;
        totalPages: number;
        hasNext: boolean;
        hasPrev: boolean;
    };
    radars: {
        id: string;
        links: Link[];
        version?: string;
        name: string;
        description: string;
        technicalInfos: string;
        latitude: number;
        longitude: number;
        team: string | TeamNode;
        configurationAsJSON: string;
    }[];
}

Hierarchy (view full)

Properties

Properties

pagination: {
    page: number;
    limit: number;
    total: number;
    totalPages: number;
    hasNext: boolean;
    hasPrev: boolean;
}

Type declaration

  • page: number
  • limit: number
  • total: number
  • totalPages: number
  • hasNext: boolean
  • hasPrev: boolean
radars: {
    id: string;
    links: Link[];
    version?: string;
    name: string;
    description: string;
    technicalInfos: string;
    latitude: number;
    longitude: number;
    team: string | TeamNode;
    configurationAsJSON: string;
}[]

Type declaration

  • id: string
  • links: Link[]
  • Optional version?: string
  • name: string
  • description: string
  • technicalInfos: string
  • latitude: number
  • longitude: number
  • team: string | TeamNode
  • configurationAsJSON: string