# FindChatsRequest Estrutura de dados do contrato OpenAPI. ## Campos | Campo | Tipo | Presença | Descrição | |---|---|---|---| | `limit` | `integer / string` | opcional | 0/ausente retorna até 5000. Padrão: `5000` | | `offset` | `integer / string` | opcional | Deslocamento da página. | | `wa_isGroup` | `boolean / string / integer / null` | opcional | — | | `includeLeft` | `boolean / string / integer / null` | opcional | — | ## Definição OpenAPI ```json { "type": "object", "properties": { "limit": { "oneOf": [ { "type": "integer", "minimum": 0, "maximum": 5000 }, { "type": "string", "description": "Inteiro em formato decimal.", "pattern": "^\\d+$" } ], "description": "0/ausente retorna até 5000.", "default": 5000 }, "offset": { "oneOf": [ { "type": "integer", "minimum": 0 }, { "type": "string", "description": "Inteiro em formato decimal.", "pattern": "^\\d+$" } ], "description": "Deslocamento da página." }, "wa_isGroup": { "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": [ "true", "false", "1", "0", "" ] }, { "type": "integer", "enum": [ 0, 1 ] }, { "type": "null" } ] }, "includeLeft": { "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": [ "true", "false", "1", "0", "" ] }, { "type": "integer", "enum": [ 0, 1 ] }, { "type": "null" } ] } } } ```