credmark.cmf.types.rpc.RpcBlockStartEndIntervalInput

DTO class RpcBlockStartEndIntervalInput(*, start, end, interval)[source]

Bases: BaseModel

Show JSON schema
{
   "title": "RpcBlockStartEndIntervalInput",
   "type": "object",
   "properties": {
      "start": {
         "title": "Start",
         "type": "integer"
      },
      "end": {
         "title": "End",
         "type": "integer"
      },
      "interval": {
         "title": "Interval",
         "type": "integer"
      }
   },
   "required": [
      "start",
      "end",
      "interval"
   ]
}

Fields
Parameters
  • start (int) –

  • end (int) –

  • interval (int) –

Return type

None

field end: int [Required]
field interval: int [Required]
field start: int [Required]