interface IInput {
    data: {
        actions?: null | DocumentAction[];
        after_block?: null | number;
        before_block?: null | number;
        filter: any;
        limit?: null | number;
        page?: null | number;
        type?: null | string;
        username: string;
    };
}

Properties

Properties

data: {
    actions?: null | DocumentAction[];
    after_block?: null | number;
    before_block?: null | number;
    filter: any;
    limit?: null | number;
    page?: null | number;
    type?: null | string;
    username: string;
}

Type declaration

  • Optional actions?: null | DocumentAction[]
  • Optional after_block?: null | number
  • Optional before_block?: null | number
  • filter: any
  • Optional limit?: null | number
  • Optional page?: null | number
  • Optional type?: null | string
  • username: string