interface SpaceResources {
    first: {
        href: string;
    };
    limit: number;
    next?: {
        href: string;
    };
    resources: SpaceResource[];
    total_count?: number;
}

Properties

first: {
    href: string;
}

Type declaration

  • href: string
limit: number
next?: {
    href: string;
}

Type declaration

  • href: string
resources: SpaceResource[]
total_count?: number