Input
Request submitted to the application to advance its state
type Input {
index: Int!
status: CompletionStatus!
timestamp: DateTime!
msgSender: String!
blockNumber: Int!
payload: String!
notices: NoticeConnection!
vouchers: VoucherConnection!
reports: ReportConnection!
}
Fields
Name | Type | Description |
---|---|---|
index | Int! | Unique identifier for the input. |
status | CompletionStatus! | Current status of the input processing. |
timestamp | DateTime! | Timestamp associated with the input submission. |
msgSender | String! | Address of the account that submitted the input. |
blockNumber | Int! | Number of the base layer block in which the input was recorded. |
payload | String! | The actual data/content of the input. |
notices | NoticeConnection! | List of notices associated with this input. |
vouchers | VoucherConnection! | List of vouchers associated with this input. |
reports | ReportConnection! | List of reports associated with this input. |