Nephila RiskStore

<back to all web services

ProcessCacheDealLinkingInformationRequest

Requires Authentication
import 'package:servicestack/servicestack.dart';

abstract class CacheRequest
{
    String? requestId;

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

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

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

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

class ProcessCacheDealLinkingInformationRequest extends CacheRequest implements IConvertible
{
    ProcessCacheDealLinkingInformationRequest();
    ProcessCacheDealLinkingInformationRequest.fromJson(Map<String, dynamic> json) : super.fromJson(json);
    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson();
    getTypeName() => "ProcessCacheDealLinkingInformationRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: <String, TypeInfo> {
    'CacheRequest': TypeInfo(TypeOf.AbstractClass),
    'ProcessCacheDealLinkingInformationRequest': TypeInfo(TypeOf.Class, create:() => ProcessCacheDealLinkingInformationRequest()),
});

Dart ProcessCacheDealLinkingInformationRequest DTOs

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

HTTP + JSV

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

POST /jsv/oneway/ProcessCacheDealLinkingInformationRequest HTTP/1.1 
Host: riskstoreng-dev.nephila.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	requestId: 00000000000000000000000000000000
}