Trendsic Platform Service

<back to all web services

AgreementKpiRequest

Requires Authentication
The following routes are available for this service:
POST,OPTIONS/v1/dashboard/agreements
<?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};


class DashboardStatTile implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $Key=null,
        /** @var string|null */
        public ?string $Label=null,
        /** @var float */
        public float $Value=0.0,
        /** @var float|null */
        public ?float $PreviousValue=null,
        /** @var string|null */
        public ?string $Unit=null,
        /** @var float|null */
        public ?float $DeltaPct=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['Key'])) $this->Key = $o['Key'];
        if (isset($o['Label'])) $this->Label = $o['Label'];
        if (isset($o['Value'])) $this->Value = $o['Value'];
        if (isset($o['PreviousValue'])) $this->PreviousValue = $o['PreviousValue'];
        if (isset($o['Unit'])) $this->Unit = $o['Unit'];
        if (isset($o['DeltaPct'])) $this->DeltaPct = $o['DeltaPct'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->Key)) $o['Key'] = $this->Key;
        if (isset($this->Label)) $o['Label'] = $this->Label;
        if (isset($this->Value)) $o['Value'] = $this->Value;
        if (isset($this->PreviousValue)) $o['PreviousValue'] = $this->PreviousValue;
        if (isset($this->Unit)) $o['Unit'] = $this->Unit;
        if (isset($this->DeltaPct)) $o['DeltaPct'] = $this->DeltaPct;
        return empty($o) ? new class(){} : $o;
    }
}

class AgreementKpiBranchRow implements JsonSerializable
{
    public function __construct(
        /** @var string|null */
        public ?string $BranchName=null,
        /** @var int */
        public int $ActiveCount=0,
        /** @var float */
        public float $Mrr=0.0,
        /** @var int */
        public int $ExpiringCount=0,
        /** @var int */
        public int $ChurnCount=0,
        /** @var float */
        public float $SkippedRate=0.0
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['BranchName'])) $this->BranchName = $o['BranchName'];
        if (isset($o['ActiveCount'])) $this->ActiveCount = $o['ActiveCount'];
        if (isset($o['Mrr'])) $this->Mrr = $o['Mrr'];
        if (isset($o['ExpiringCount'])) $this->ExpiringCount = $o['ExpiringCount'];
        if (isset($o['ChurnCount'])) $this->ChurnCount = $o['ChurnCount'];
        if (isset($o['SkippedRate'])) $this->SkippedRate = $o['SkippedRate'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->BranchName)) $o['BranchName'] = $this->BranchName;
        if (isset($this->ActiveCount)) $o['ActiveCount'] = $this->ActiveCount;
        if (isset($this->Mrr)) $o['Mrr'] = $this->Mrr;
        if (isset($this->ExpiringCount)) $o['ExpiringCount'] = $this->ExpiringCount;
        if (isset($this->ChurnCount)) $o['ChurnCount'] = $this->ChurnCount;
        if (isset($this->SkippedRate)) $o['SkippedRate'] = $this->SkippedRate;
        return empty($o) ? new class(){} : $o;
    }
}

class AgreementKpiResponse implements JsonSerializable
{
    public function __construct(
        /** @var ResponseStatus|null */
        public ?ResponseStatus $ResponseStatus=null,
        /** @var array<DashboardStatTile>|null */
        public ?array $Stats=null,
        /** @var array<AgreementKpiBranchRow>|null */
        public ?array $ByBranch=null
    ) {
    }

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

class AgreementKpiRequest implements JsonSerializable
{
    public function __construct(
        /** @var DateTime */
        public DateTime $FromDate=new DateTime(),
        /** @var DateTime */
        public DateTime $ToDate=new DateTime(),
        /** @var array<string>|null */
        public ?array $LocationIds=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['FromDate'])) $this->FromDate = JsonConverters::from('DateTime', $o['FromDate']);
        if (isset($o['ToDate'])) $this->ToDate = JsonConverters::from('DateTime', $o['ToDate']);
        if (isset($o['LocationIds'])) $this->LocationIds = JsonConverters::fromArray('Guid', $o['LocationIds']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->FromDate)) $o['FromDate'] = JsonConverters::to('DateTime', $this->FromDate);
        if (isset($this->ToDate)) $o['ToDate'] = JsonConverters::to('DateTime', $this->ToDate);
        if (isset($this->LocationIds)) $o['LocationIds'] = JsonConverters::toArray('Guid', $this->LocationIds);
        return empty($o) ? new class(){} : $o;
    }
}

PHP AgreementKpiRequest 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 /v1/dashboard/agreements HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<AgreementKpiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <FromDate>0001-01-01T00:00:00</FromDate>
  <LocationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>00000000-0000-0000-0000-000000000000</d2p1:guid>
  </LocationIds>
  <ToDate>0001-01-01T00:00:00</ToDate>
</AgreementKpiRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<AgreementKpiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <ByBranch>
    <AgreementKpiBranchRow>
      <ActiveCount>0</ActiveCount>
      <BranchName>String</BranchName>
      <ChurnCount>0</ChurnCount>
      <ExpiringCount>0</ExpiringCount>
      <Mrr>0</Mrr>
      <SkippedRate>0</SkippedRate>
    </AgreementKpiBranchRow>
  </ByBranch>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1: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>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1: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>
    </d2p1:Meta>
  </ResponseStatus>
  <Stats>
    <DashboardStatTile>
      <Key>String</Key>
      <Label>String</Label>
      <PreviousValue>0</PreviousValue>
      <Unit>String</Unit>
      <Value>0</Value>
    </DashboardStatTile>
  </Stats>
</AgreementKpiResponse>