Required role: | Admin | Required permission: | CanAccess |
GET | /sync/products |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
/**
* The number of query results to skip.
*/
// @Api(Description="The number of query results to skip.")
abstract class PaginationBase implements IPaginate
{
/**
* The number of query results to skip.
*/
// @ApiMember(Description="The number of query results to skip.")
int? skip;
/**
* The number of query results to include.
*/
// @ApiMember(Description="The number of query results to include.")
int? take;
PaginationBase({this.skip,this.take});
PaginationBase.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
skip = json['skip'];
take = json['take'];
return this;
}
Map<String, dynamic> toJson() => {
'skip': skip,
'take': take
};
getTypeName() => "PaginationBase";
TypeContext? context = _ctx;
}
/**
* Specifies a service to retrieve all products.
*/
// @Api(Description="Specifies a service to retrieve all products.")
abstract class RetrieveAllProductsBase extends PaginationBase implements IGet
{
/**
* Should the related orders of the account be included in the retrieved products?
*/
// @ApiMember(Description="Should the related orders of the account be included in the retrieved products?")
bool? includeOrders;
/**
* Specifies the number of orders to skip per product. Applicable only when 'IncludeOrders' is true.
*/
// @ApiMember(Description="Specifies the number of orders to skip per product. Applicable only when 'IncludeOrders' is true. ")
int? skipOrders;
/**
* Specifies the number of orders to include per product. Applicable only when 'IncludeOrders' is true.
*/
// @ApiMember(Description="Specifies the number of orders to include per product. Applicable only when 'IncludeOrders' is true. ")
int? takeOrders;
/**
* The number of query results to skip.
*/
// @ApiMember(Description="The number of query results to skip.")
int? skip;
/**
* The number of query results to include.
*/
// @ApiMember(Description="The number of query results to include.")
int? take;
RetrieveAllProductsBase({this.includeOrders,this.skipOrders,this.takeOrders,this.skip,this.take});
RetrieveAllProductsBase.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
includeOrders = json['includeOrders'];
skipOrders = json['skipOrders'];
takeOrders = json['takeOrders'];
skip = json['skip'];
take = json['take'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'includeOrders': includeOrders,
'skipOrders': skipOrders,
'takeOrders': takeOrders,
'skip': skip,
'take': take
});
getTypeName() => "RetrieveAllProductsBase";
TypeContext? context = _ctx;
}
/**
* Represents a product.
*/
// @Api(Description="Represents a product.")
class Product implements IHasName, IConvertible
{
/**
* The unique identifier of the product.
*/
// @ApiMember(Description="The unique identifier of the product.", IsRequired=true)
int? id;
/**
* The position of this instance in a collection of 'Product' instances
*/
// @ApiMember(Description="The position of this instance in a collection of 'Product' instances", IsRequired=true)
int? index;
/**
* The name of the product.
*/
// @ApiMember(Description="The name of the product.", IsRequired=true)
// @Validate(Validator="NotEmpty")
String? name;
/**
* The version of the product.
*/
// @ApiMember(Description="The version of the product.", IsRequired=true)
// @Validate(Validator="NotEmpty")
String? version;
/**
* The version of the product.
*/
// @ApiMember(Description="The version of the product.")
String? description;
/**
* Tags associated with the product.
*/
// @ApiMember(Description="Tags associated with the product.")
List<String>? tags;
Product({this.id,this.index,this.name,this.version,this.description,this.tags});
Product.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
index = json['index'];
name = json['name'];
version = json['version'];
description = json['description'];
tags = JsonConverters.fromJson(json['tags'],'List<String>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'index': index,
'name': name,
'version': version,
'description': description,
'tags': JsonConverters.toJson(tags,'List<String>',context!)
};
getTypeName() => "Product";
TypeContext? context = _ctx;
}
/**
* Represents a query response that contains a structured error information and encapsulates products.
*/
// @Api(Description="Represents a query response that contains a structured error information and encapsulates products.")
class ProductQueryResponse extends QueryResponse<Product> implements IConvertible
{
/**
* The dictionary of orders associated with each found product.
*/
// @ApiMember(Description="The dictionary of orders associated with each found product.")
Map<int,List<Order>?>? ordersMap;
// @DataMember(Order=1)
int? offset;
// @DataMember(Order=2)
int? total;
// @DataMember(Order=3)
List<Product>? results;
// @DataMember(Order=4)
Map<String,String?>? meta;
// @DataMember(Order=5)
ResponseStatus? responseStatus;
ProductQueryResponse({this.ordersMap,this.offset,this.total,this.results,this.meta,this.responseStatus});
ProductQueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
ordersMap = JsonConverters.fromJson(json['ordersMap'],'Map<int,List<Order>?>',context!);
offset = json['offset'];
total = json['total'];
results = JsonConverters.fromJson(json['results'],'List<Product>',context!);
meta = JsonConverters.toStringMap(json['meta']);
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'ordersMap': JsonConverters.toJson(ordersMap,'Map<int,List<Order>?>',context!),
'offset': offset,
'total': total,
'results': JsonConverters.toJson(results,'List<Product>',context!),
'meta': meta,
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
});
getTypeName() => "ProductQueryResponse";
TypeContext? context = _ctx;
}
/**
* Represents a service request to retrieve all products.
*/
// @Api(Description="Represents a service request to retrieve all products.")
class RetrieveAllProducts extends RetrieveAllProductsBase implements IConvertible
{
/**
* Should the related orders of the account be included in the retrieved products?
*/
// @ApiMember(Description="Should the related orders of the account be included in the retrieved products?")
bool? includeOrders;
/**
* Specifies the number of orders to skip per product. Applicable only when 'IncludeOrders' is true.
*/
// @ApiMember(Description="Specifies the number of orders to skip per product. Applicable only when 'IncludeOrders' is true. ")
int? skipOrders;
/**
* Specifies the number of orders to include per product. Applicable only when 'IncludeOrders' is true.
*/
// @ApiMember(Description="Specifies the number of orders to include per product. Applicable only when 'IncludeOrders' is true. ")
int? takeOrders;
/**
* The number of query results to skip.
*/
// @ApiMember(Description="The number of query results to skip.")
int? skip;
/**
* The number of query results to include.
*/
// @ApiMember(Description="The number of query results to include.")
int? take;
RetrieveAllProducts({this.includeOrders,this.skipOrders,this.takeOrders,this.skip,this.take});
RetrieveAllProducts.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
includeOrders = json['includeOrders'];
skipOrders = json['skipOrders'];
takeOrders = json['takeOrders'];
skip = json['skip'];
take = json['take'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'includeOrders': includeOrders,
'skipOrders': skipOrders,
'takeOrders': takeOrders,
'skip': skip,
'take': take
});
getTypeName() => "RetrieveAllProducts";
TypeContext? context = _ctx;
}
// @DataContract
class QueryResponse<T> implements IConvertible
{
// @DataMember(Order=1)
int? offset;
// @DataMember(Order=2)
int? total;
// @DataMember(Order=3)
List<T>? results;
// @DataMember(Order=4)
Map<String,String?>? meta;
// @DataMember(Order=5)
ResponseStatus? responseStatus;
QueryResponse({this.offset,this.total,this.results,this.meta,this.responseStatus});
QueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
offset = json['offset'];
total = json['total'];
results = JsonConverters.fromJson(json['results'],'List<${runtimeGenericTypeDefs(this,[0]).join(",")}>',context!);
meta = JsonConverters.toStringMap(json['meta']);
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'offset': offset,
'total': total,
'results': JsonConverters.toJson(results,'List<T>',context!),
'meta': meta,
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
};
getTypeName() => "QueryResponse<$T>";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'taxfiling.pwc.de', types: <String, TypeInfo> {
'PaginationBase': TypeInfo(TypeOf.AbstractClass),
'RetrieveAllProductsBase': TypeInfo(TypeOf.AbstractClass),
'Product': TypeInfo(TypeOf.Class, create:() => Product()),
'ProductQueryResponse': TypeInfo(TypeOf.Class, create:() => ProductQueryResponse()),
'Map<int,List<Order>?>': TypeInfo(TypeOf.Class, create:() => Map<int,List<Order>?>()),
'List<Order>': TypeInfo(TypeOf.Class, create:() => <Order>[]),
'Order': TypeInfo(TypeOf.Class, create:() => Order()),
'List<Product>': TypeInfo(TypeOf.Class, create:() => <Product>[]),
'RetrieveAllProducts': TypeInfo(TypeOf.Class, create:() => RetrieveAllProducts()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /sync/products HTTP/1.1 Host: taxfiling.pwc.de Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ProductQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PwC.Metering.Core.Services.Contracts.Responses"> <Offset xmlns="http://schemas.servicestack.net/types">0</Offset> <Total xmlns="http://schemas.servicestack.net/types">0</Total> <Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/PwC.Metering.Core.Domain.Concretes.Models" xmlns="http://schemas.servicestack.net/types"> <d2p1:Product> <d2p1:Description>String</d2p1:Description> <d2p1:Id>0</d2p1:Id> <d2p1:Index>0</d2p1:Index> <d2p1:Name>String</d2p1:Name> <d2p1:Tags xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>String</d4p1:string> </d2p1:Tags> <d2p1:Version>String</d2p1:Version> </d2p1:Product> </Results> <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.servicestack.net/types"> <d2p1:KeyValueOfstringstring> <d2p1:Key>String</d2p1:Key> <d2p1:Value>String</d2p1:Value> </d2p1:KeyValueOfstringstring> </Meta> <ResponseStatus xmlns="http://schemas.servicestack.net/types"> <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> <OrdersMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfintArrayOfOrderKY2vvLcG> <d2p1:Key>0</d2p1:Key> <d2p1:Value xmlns:d4p1="http://schemas.datacontract.org/2004/07/PwC.Metering.Core.Domain.Concretes.Models"> <d4p1:Order> <d4p1:AccountId>0</d4p1:AccountId> <d4p1:ClientIPAddress>String</d4p1:ClientIPAddress> <d4p1:CreationDate>0001-01-01T00:00:00</d4p1:CreationDate> <d4p1:DataName>String</d4p1:DataName> <d4p1:DataType>String</d4p1:DataType> <d4p1:ExpiryDate>0001-01-01T00:00:00</d4p1:ExpiryDate> <d4p1:Id>0</d4p1:Id> <d4p1:IsTest>false</d4p1:IsTest> <d4p1:Name>String</d4p1:Name> <d4p1:ProcessType>String</d4p1:ProcessType> <d4p1:ProductId>0</d4p1:ProductId> <d4p1:RequestDuration>PT0S</d4p1:RequestDuration> <d4p1:RequestHttpMethod>String</d4p1:RequestHttpMethod> <d4p1:RequestTimestamp>0001-01-01T00:00:00</d4p1:RequestTimestamp> <d4p1:RequestUri>String</d4p1:RequestUri> <d4p1:ResponseStatusCode>Continue</d4p1:ResponseStatusCode> <d4p1:ResponseTimestamp>0001-01-01T00:00:00</d4p1:ResponseTimestamp> <d4p1:ServiceName>String</d4p1:ServiceName> <d4p1:UnitOfMeasurement>String</d4p1:UnitOfMeasurement> </d4p1:Order> </d2p1:Value> </d2p1:KeyValueOfintArrayOfOrderKY2vvLcG> </OrdersMap> </ProductQueryResponse>