Variable $PaginatedResultLinksViewConst

$PaginatedResultLinksView: {
    properties: {
        current: { nullable: true; type: "string" };
        first: { nullable: true; type: "string" };
        last: { nullable: true; type: "string" };
        next: { nullable: true; type: "string" };
        previous: { nullable: true; type: "string" };
    };
    required: readonly ["first", "previous", "current", "next", "last"];
    type: "object";
} = ...

Type declaration

  • Readonlyproperties: {
        current: { nullable: true; type: "string" };
        first: { nullable: true; type: "string" };
        last: { nullable: true; type: "string" };
        next: { nullable: true; type: "string" };
        previous: { nullable: true; type: "string" };
    }
  • Readonlyrequired: readonly ["first", "previous", "current", "next", "last"]
  • Readonlytype: "object"