BokaMera.API.Host

<back to all web services

UpdateServicePricesMapping

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
PUT/services/prices/mappingsUpdate price mappings for service pricesUpdate price mappings for service prices
<?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 ServicePriceMappingResponse implements JsonSerializable
{
    public function __construct(
        /** @description The company id */
        // @ApiMember(Description="The company id")
        /** @var string */
        public string $CompanyId='',

        /** @var string */
        public string $Id='',
        /** @description The price id */
        // @ApiMember(Description="The price id")
        /** @var int */
        public int $PriceId=0,

        /** @description The external reference */
        // @ApiMember(Description="The external reference")
        /** @var string|null */
        public ?string $ExternalReference=null,

        /** @description The Reference Type */
        // @ApiMember(Description="The Reference Type")
        /** @var string|null */
        public ?string $ReferenceType=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
        if (isset($o['Id'])) $this->Id = $o['Id'];
        if (isset($o['PriceId'])) $this->PriceId = $o['PriceId'];
        if (isset($o['ExternalReference'])) $this->ExternalReference = $o['ExternalReference'];
        if (isset($o['ReferenceType'])) $this->ReferenceType = $o['ReferenceType'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
        if (isset($this->Id)) $o['Id'] = $this->Id;
        if (isset($this->PriceId)) $o['PriceId'] = $this->PriceId;
        if (isset($this->ExternalReference)) $o['ExternalReference'] = $this->ExternalReference;
        if (isset($this->ReferenceType)) $o['ReferenceType'] = $this->ReferenceType;
        return empty($o) ? new class(){} : $o;
    }
}

class ServicePriceMapping implements JsonSerializable
{
    public function __construct(
        /** @description The id */
        // @ApiMember(Description="The id")
        /** @var string|null */
        public ?string $Id=null,

        /** @description The price id */
        // @ApiMember(Description="The price id")
        /** @var int */
        public int $PriceId=0,

        /** @description The Reference Type */
        // @ApiMember(Description="The Reference Type")
        /** @var string|null */
        public ?string $ReferenceType=null,

        /** @description The external reference; Values for e-accounting; EAccountingCustomerId, EAccountingArticle, EAccountingInvoice, EAccountingDraftInvoice */
        // @ApiMember(Description="The external reference; Values for e-accounting; EAccountingCustomerId, EAccountingArticle, EAccountingInvoice, EAccountingDraftInvoice")
        /** @var string|null */
        public ?string $ExternalReference=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['Id'])) $this->Id = $o['Id'];
        if (isset($o['PriceId'])) $this->PriceId = $o['PriceId'];
        if (isset($o['ReferenceType'])) $this->ReferenceType = $o['ReferenceType'];
        if (isset($o['ExternalReference'])) $this->ExternalReference = $o['ExternalReference'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->Id)) $o['Id'] = $this->Id;
        if (isset($this->PriceId)) $o['PriceId'] = $this->PriceId;
        if (isset($this->ReferenceType)) $o['ReferenceType'] = $this->ReferenceType;
        if (isset($this->ExternalReference)) $o['ExternalReference'] = $this->ExternalReference;
        return empty($o) ? new class(){} : $o;
    }
}

// @ValidateRequest(Validator="IsAuthenticated")
class UpdateServicePricesMapping implements ICompany, JsonSerializable
{
    public function __construct(
        /** @description Company to show services for */
        // @ApiMember(Description="Company to show services for")
        /** @var string|null */
        public ?string $CompanyId=null,

        /** @var array<ServicePriceMapping>|null */
        public ?array $ServicePriceMappings=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
        if (isset($o['ServicePriceMappings'])) $this->ServicePriceMappings = JsonConverters::fromArray('ServicePriceMapping', $o['ServicePriceMappings']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
        if (isset($this->ServicePriceMappings)) $o['ServicePriceMappings'] = JsonConverters::toArray('ServicePriceMapping', $this->ServicePriceMappings);
        return empty($o) ? new class(){} : $o;
    }
}

PHP UpdateServicePricesMapping 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.

PUT /services/prices/mappings HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<UpdateServicePricesMapping xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
  <ServicePriceMappings>
    <ServicePriceMapping>
      <ExternalReference>String</ExternalReference>
      <Id>00000000-0000-0000-0000-000000000000</Id>
      <PriceId>0</PriceId>
      <ReferenceType>String</ReferenceType>
    </ServicePriceMapping>
  </ServicePriceMappings>
</UpdateServicePricesMapping>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ServicePriceMappingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
  <ExternalReference>String</ExternalReference>
  <Id>00000000-0000-0000-0000-000000000000</Id>
  <PriceId>0</PriceId>
  <ReferenceType>String</ReferenceType>
</ServicePriceMappingResponse>