Mds.Api

<back to all web services

Part

Requires Authentication
Requires any of the roles:dealer-api-mds, dealer-api-nop
The following routes are available for this service:
All Verbs/part/{PartId}
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class PartDetail implements IConvertible
{
    int? Id;
    String? InventoryId;
    String? Name;
    bool? Active;
    DateTime? DateLastUpdate;
    double? RRP;
    double? TradePrice;
    double? DealerPrice;

    PartDetail({this.Id,this.InventoryId,this.Name,this.Active,this.DateLastUpdate,this.RRP,this.TradePrice,this.DealerPrice});
    PartDetail.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        Id = json['Id'];
        InventoryId = json['InventoryId'];
        Name = json['Name'];
        Active = json['Active'];
        DateLastUpdate = JsonConverters.fromJson(json['DateLastUpdate'],'DateTime',context!);
        RRP = JsonConverters.toDouble(json['RRP']);
        TradePrice = JsonConverters.toDouble(json['TradePrice']);
        DealerPrice = JsonConverters.toDouble(json['DealerPrice']);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'Id': Id,
        'InventoryId': InventoryId,
        'Name': Name,
        'Active': Active,
        'DateLastUpdate': JsonConverters.toJson(DateLastUpdate,'DateTime',context!),
        'RRP': RRP,
        'TradePrice': TradePrice,
        'DealerPrice': DealerPrice
    };

    getTypeName() => "PartDetail";
    TypeContext? context = _ctx;
}

class PartResponse implements IConvertible
{
    ResponseStatus? ResponseStatus;
    bool? IsSuccess;
    String? Message;
    PartDetail? Item;

    PartResponse({this.ResponseStatus,this.IsSuccess,this.Message,this.Item});
    PartResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
        IsSuccess = json['IsSuccess'];
        Message = json['Message'];
        Item = JsonConverters.fromJson(json['Item'],'PartDetail',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
        'IsSuccess': IsSuccess,
        'Message': Message,
        'Item': JsonConverters.toJson(Item,'PartDetail',context!)
    };

    getTypeName() => "PartResponse";
    TypeContext? context = _ctx;
}

class Part implements IConvertible
{
    int? PartId;

    Part({this.PartId});
    Part.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        PartId = json['PartId'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'PartId': PartId
    };

    getTypeName() => "Part";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'mds_api.mojomotorcycles.com.au', types: <String, TypeInfo> {
    'PartDetail': TypeInfo(TypeOf.Class, create:() => PartDetail()),
    'PartResponse': TypeInfo(TypeOf.Class, create:() => PartResponse()),
    'Part': TypeInfo(TypeOf.Class, create:() => Part()),
});

Dart Part 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 /part/{PartId} HTTP/1.1 
Host: mds-api.mojomotorcycles.com.au 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<Part xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mds.Api.ServiceModel">
  <PartId>0</PartId>
</Part>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<PartResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mds.Api.ServiceModel">
  <IsSuccess>false</IsSuccess>
  <Item>
    <Active>false</Active>
    <DateLastUpdate>0001-01-01T00:00:00</DateLastUpdate>
    <DealerPrice>0</DealerPrice>
    <Id>0</Id>
    <InventoryId>String</InventoryId>
    <Name>String</Name>
    <RRP>0</RRP>
    <TradePrice>0</TradePrice>
  </Item>
  <Message>String</Message>
  <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>
</PartResponse>