> For the complete documentation index, see [llms.txt](https://astral-protocol.gitbook.io/astral/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://astral-protocol.gitbook.io/astral/archive/geodids/build-with-astral/quickstart/types.md).

# Types

#### IDocumentInfo

```
interface IDocumentInfo {
    geodidid: string;
    documentVal: any;
    parentid?: string;
}
```

**ILoadInfo**

```
interface LoadInfo {
    documentInfo: IDocumentInfo;
    powergateInstance: Powergate 
}
```

**IPinInfo**

```
interface IPinInfo {
    geodidid: string;
    cid: string;
    pinDate: Date;
    token: string
} 
```
