# RdlxDocumentType

## Content

# Type Alias: RdlxDocumentType

```ts
type RdlxDocumentType = 
  | {
  platform: "rdlx";
  subType: "fpl";
  type: "report";
}
  | {
  platform: "rdlx";
  subType: "msl";
  type: "report";
}
  | {
  platform: "rdlx";
  subType: "msl";
  type: "dashboard";
}
  | {
  platform: "rdlx";
  subType: "msl";
  type: "master";
};
```
