Interface RaainApiNotificationsFindAllMineResponse

interface RaainApiNotificationsFindAllMineResponse {
    pagination: {
        page: number;
        limit: number;
        total: number;
        totalPages: number;
        hasNext: boolean;
        hasPrev: boolean;
    };
    notifications: {
        id: string;
        title: string;
        status: number;
        red: boolean;
        description: string;
        created: Date;
        modified: Date;
    }[];
}

Hierarchy (view full)

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
notifications: {
    id: string;
    title: string;
    status: number;
    red: boolean;
    description: string;
    created: Date;
    modified: Date;
}[]

Type declaration

  • id: string
  • title: string
  • status: number
  • red: boolean
  • description: string
  • created: Date
  • modified: Date