credmark.cmf.types.rpc.RpcBlockWindowIntervalInput

DTO class RpcBlockWindowIntervalInput(*, window, interval)[source]

Bases: BaseModel

Show JSON schema
{
   "title": "RpcBlockWindowIntervalInput",
   "type": "object",
   "properties": {
      "window": {
         "title": "Window",
         "type": "integer"
      },
      "interval": {
         "title": "Interval",
         "type": "integer"
      }
   },
   "required": [
      "window",
      "interval"
   ]
}

Fields
Parameters
  • window (int) –

  • interval (int) –

Return type

None

field interval: int [Required]
field window: int [Required]