Translations:Stat API/35/ru: Difference between revisions

From Wiki Kaminari Click
(Created page with "===== Примеры фильтров ===== '''Тип <code>list</code>, include включён.''' Ищет визиты только из Камбоджи ("KH") или Китая ("CN"). <pre> { ... "filters":{ "filters":[ { "id":"geo_country", "type":"list", "include":["KH","CN"], "exclude":[] } ], "period":"today", "timezone":-3 } } </pre>")
 
(No difference)

Latest revision as of 17:39, 10 April 2024

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Stat API)
===== Filters examples =====
'''Type <code>list</code>, include in on.''' Search the visits only from Cambodia ("KH") or China ("CN").
<pre>
{
   ...
   "filters":{
     "filters":[
         {
           "id":"geo_country",
           "type":"list",
           "include":["KH","CN"],
           "exclude":[]
         }
     ],
     "period":"today",
     "timezone":-3
   }
}
</pre>
Примеры фильтров

Тип list, include включён. Ищет визиты только из Камбоджи ("KH") или Китая ("CN").

{
   ...
   "filters":{
      "filters":[
         {
            "id":"geo_country",
            "type":"list",
            "include":["KH","CN"],
            "exclude":[]
         }
      ],
      "period":"today",
      "timezone":-3
   }
}