Blazor Diffusion

<back to all web services

GetAnalyticsReports

<?php namespace dtos;

use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};


// @DataContract
class RequestSummary implements JsonSerializable
{
    public function __construct(
        // @DataMember(Order=1)
        /** @var string|null */
        public ?string $name=null,

        // @DataMember(Order=2)
        /** @var int */
        public int $totalRequests=0,

        // @DataMember(Order=3)
        /** @var int */
        public int $totalRequestLength=0,

        // @DataMember(Order=4)
        /** @var int */
        public int $minRequestLength=0,

        // @DataMember(Order=5)
        /** @var int */
        public int $maxRequestLength=0,

        // @DataMember(Order=6)
        /** @var float */
        public float $totalDuration=0.0,

        // @DataMember(Order=7)
        /** @var float */
        public float $minDuration=0.0,

        // @DataMember(Order=8)
        /** @var float */
        public float $maxDuration=0.0,

        // @DataMember(Order=9)
        /** @var array<string,int>|null */
        public ?array $status=null,

        // @DataMember(Order=10)
        /** @var array<string,int>|null */
        public ?array $durations=null,

        // @DataMember(Order=11)
        /** @var array<string,int>|null */
        public ?array $apis=null,

        // @DataMember(Order=12)
        /** @var array<string,int>|null */
        public ?array $users=null,

        // @DataMember(Order=13)
        /** @var array<string,int>|null */
        public ?array $ips=null,

        // @DataMember(Order=14)
        /** @var array<string,int>|null */
        public ?array $apiKeys=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['name'])) $this->name = $o['name'];
        if (isset($o['totalRequests'])) $this->totalRequests = $o['totalRequests'];
        if (isset($o['totalRequestLength'])) $this->totalRequestLength = $o['totalRequestLength'];
        if (isset($o['minRequestLength'])) $this->minRequestLength = $o['minRequestLength'];
        if (isset($o['maxRequestLength'])) $this->maxRequestLength = $o['maxRequestLength'];
        if (isset($o['totalDuration'])) $this->totalDuration = $o['totalDuration'];
        if (isset($o['minDuration'])) $this->minDuration = $o['minDuration'];
        if (isset($o['maxDuration'])) $this->maxDuration = $o['maxDuration'];
        if (isset($o['status'])) $this->status = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['int','int']), $o['status']);
        if (isset($o['durations'])) $this->durations = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','int']), $o['durations']);
        if (isset($o['apis'])) $this->apis = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','int']), $o['apis']);
        if (isset($o['users'])) $this->users = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','int']), $o['users']);
        if (isset($o['ips'])) $this->ips = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','int']), $o['ips']);
        if (isset($o['apiKeys'])) $this->apiKeys = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','int']), $o['apiKeys']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->name)) $o['name'] = $this->name;
        if (isset($this->totalRequests)) $o['totalRequests'] = $this->totalRequests;
        if (isset($this->totalRequestLength)) $o['totalRequestLength'] = $this->totalRequestLength;
        if (isset($this->minRequestLength)) $o['minRequestLength'] = $this->minRequestLength;
        if (isset($this->maxRequestLength)) $o['maxRequestLength'] = $this->maxRequestLength;
        if (isset($this->totalDuration)) $o['totalDuration'] = $this->totalDuration;
        if (isset($this->minDuration)) $o['minDuration'] = $this->minDuration;
        if (isset($this->maxDuration)) $o['maxDuration'] = $this->maxDuration;
        if (isset($this->status)) $o['status'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['int','int']), $this->status);
        if (isset($this->durations)) $o['durations'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','int']), $this->durations);
        if (isset($this->apis)) $o['apis'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','int']), $this->apis);
        if (isset($this->users)) $o['users'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','int']), $this->users);
        if (isset($this->ips)) $o['ips'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','int']), $this->ips);
        if (isset($this->apiKeys)) $o['apiKeys'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','int']), $this->apiKeys);
        return empty($o) ? new class(){} : $o;
    }
}

// @DataContract
class AnalyticsReports implements JsonSerializable
{
    public function __construct(
        // @DataMember(Order=1)
        /** @var int */
        public int $id=0,

        // @DataMember(Order=2)
        /** @var DateTime */
        public DateTime $created=new DateTime(),

        // @DataMember(Order=3)
        /** @var float */
        public float $version=0.0,

        // @DataMember(Order=4)
        /** @var array<string,RequestSummary>|null */
        public ?array $apis=null,

        // @DataMember(Order=5)
        /** @var array<string,RequestSummary>|null */
        public ?array $users=null,

        // @DataMember(Order=6)
        /** @var array<string,RequestSummary>|null */
        public ?array $tags=null,

        // @DataMember(Order=7)
        /** @var array<string,RequestSummary>|null */
        public ?array $status=null,

        // @DataMember(Order=8)
        /** @var array<string,RequestSummary>|null */
        public ?array $days=null,

        // @DataMember(Order=9)
        /** @var array<string,RequestSummary>|null */
        public ?array $apiKeys=null,

        // @DataMember(Order=10)
        /** @var array<string,RequestSummary>|null */
        public ?array $ips=null,

        // @DataMember(Order=11)
        /** @var array<string,RequestSummary>|null */
        public ?array $browsers=null,

        // @DataMember(Order=12)
        /** @var array<string,RequestSummary>|null */
        public ?array $devices=null,

        // @DataMember(Order=13)
        /** @var array<string,RequestSummary>|null */
        public ?array $bots=null,

        // @DataMember(Order=14)
        /** @var array<string,int>|null */
        public ?array $durations=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['id'])) $this->id = $o['id'];
        if (isset($o['created'])) $this->created = JsonConverters::from('DateTime', $o['created']);
        if (isset($o['version'])) $this->version = $o['version'];
        if (isset($o['apis'])) $this->apis = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['apis']);
        if (isset($o['users'])) $this->users = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['users']);
        if (isset($o['tags'])) $this->tags = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['tags']);
        if (isset($o['status'])) $this->status = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['status']);
        if (isset($o['days'])) $this->days = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['days']);
        if (isset($o['apiKeys'])) $this->apiKeys = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['apiKeys']);
        if (isset($o['ips'])) $this->ips = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['ips']);
        if (isset($o['browsers'])) $this->browsers = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['browsers']);
        if (isset($o['devices'])) $this->devices = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['devices']);
        if (isset($o['bots'])) $this->bots = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $o['bots']);
        if (isset($o['durations'])) $this->durations = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','int']), $o['durations']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->id)) $o['id'] = $this->id;
        if (isset($this->created)) $o['created'] = JsonConverters::to('DateTime', $this->created);
        if (isset($this->version)) $o['version'] = $this->version;
        if (isset($this->apis)) $o['apis'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->apis);
        if (isset($this->users)) $o['users'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->users);
        if (isset($this->tags)) $o['tags'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->tags);
        if (isset($this->status)) $o['status'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->status);
        if (isset($this->days)) $o['days'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->days);
        if (isset($this->apiKeys)) $o['apiKeys'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->apiKeys);
        if (isset($this->ips)) $o['ips'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->ips);
        if (isset($this->browsers)) $o['browsers'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->browsers);
        if (isset($this->devices)) $o['devices'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->devices);
        if (isset($this->bots)) $o['bots'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','RequestSummary']), $this->bots);
        if (isset($this->durations)) $o['durations'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','int']), $this->durations);
        return empty($o) ? new class(){} : $o;
    }
}

// @DataContract
class GetAnalyticsReportsResponse implements JsonSerializable
{
    public function __construct(
        // @DataMember(Order=1)
        /** @var AnalyticsReports|null */
        public ?AnalyticsReports $result=null,

        // @DataMember(Order=2)
        /** @var ResponseStatus|null */
        public ?ResponseStatus $responseStatus=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['result'])) $this->result = JsonConverters::from('AnalyticsReports', $o['result']);
        if (isset($o['responseStatus'])) $this->responseStatus = JsonConverters::from('ResponseStatus', $o['responseStatus']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->result)) $o['result'] = JsonConverters::to('AnalyticsReports', $this->result);
        if (isset($this->responseStatus)) $o['responseStatus'] = JsonConverters::to('ResponseStatus', $this->responseStatus);
        return empty($o) ? new class(){} : $o;
    }
}

// @DataContract
class GetAnalyticsReports implements IGet, JsonSerializable
{
    public function __construct(
        // @DataMember(Order=1)
        /** @var DateTime|null */
        public ?DateTime $month=null,

        // @DataMember(Order=2)
        /** @var string|null */
        public ?string $filter=null,

        // @DataMember(Order=3)
        /** @var string|null */
        public ?string $value=null,

        // @DataMember(Order=4)
        /** @var bool|null */
        public ?bool $force=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['month'])) $this->month = JsonConverters::from('DateTime', $o['month']);
        if (isset($o['filter'])) $this->filter = $o['filter'];
        if (isset($o['value'])) $this->value = $o['value'];
        if (isset($o['force'])) $this->force = $o['force'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->month)) $o['month'] = JsonConverters::to('DateTime', $this->month);
        if (isset($this->filter)) $o['filter'] = $this->filter;
        if (isset($this->value)) $o['value'] = $this->value;
        if (isset($this->force)) $o['force'] = $this->force;
        return empty($o) ? new class(){} : $o;
    }
}

PHP GetAnalyticsReports DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/GetAnalyticsReports HTTP/1.1 
Host: blazordiffusion.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetAnalyticsReports xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
  <Month>0001-01-01T00:00:00</Month>
  <Filter>String</Filter>
  <Value>String</Value>
  <Force>false</Force>
</GetAnalyticsReports>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetAnalyticsReportsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
  <Result>
    <Id>0</Id>
    <Created>0001-01-01T00:00:00</Created>
    <Version>0</Version>
    <Apis xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Apis>
    <Users xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Users>
    <Tags xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Tags>
    <Status xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Status>
    <Days xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Days>
    <ApiKeys xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </ApiKeys>
    <Ips xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Ips>
    <Browsers xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Browsers>
    <Devices xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Devices>
    <Bots xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <Name>String</Name>
          <TotalRequests>0</TotalRequests>
          <TotalRequestLength>0</TotalRequestLength>
          <MinRequestLength>0</MinRequestLength>
          <MaxRequestLength>0</MaxRequestLength>
          <TotalDuration>0</TotalDuration>
          <MinDuration>0</MinDuration>
          <MaxDuration>0</MaxDuration>
          <Status>
            <d3p1:KeyValueOfintlong>
              <d3p1:Key>0</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfintlong>
          </Status>
          <Durations>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Durations>
          <Apis>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Apis>
          <Users>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Users>
          <Ips>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </Ips>
          <ApiKeys>
            <d3p1:KeyValueOfstringlong>
              <d3p1:Key>String</d3p1:Key>
              <d3p1:Value>0</d3p1:Value>
            </d3p1:KeyValueOfstringlong>
          </ApiKeys>
        </d3p1:Value>
      </d3p1:KeyValueOfstringRequestSummaryEdXdwojR>
    </Bots>
    <Durations xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringlong>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>0</d3p1:Value>
      </d3p1:KeyValueOfstringlong>
    </Durations>
  </Result>
  <ResponseStatus>
    <ErrorCode>String</ErrorCode>
    <Message>String</Message>
    <StackTrace>String</StackTrace>
    <Errors>
      <ResponseError>
        <ErrorCode>String</ErrorCode>
        <FieldName>String</FieldName>
        <Message>String</Message>
        <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </Meta>
      </ResponseError>
    </Errors>
    <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </Meta>
  </ResponseStatus>
</GetAnalyticsReportsResponse>