ImzagerServices

<back to all web services

SignDocumentProxyContent

The following routes are available for this service:
All Verbs/SignDocumentProxyContent/
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class BaseResponse implements IConvertible
{
    bool? ServiceSuccessResult;
    String? ErrorMesage;

    BaseResponse({this.ServiceSuccessResult,this.ErrorMesage});
    BaseResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

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

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

class SignDocumentProxyContentResponse extends BaseResponse implements IConvertible
{
    Uint8List? SignedDocumentContent;

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

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        SignedDocumentContent = JsonConverters.fromJson(json['SignedDocumentContent'],'Uint8List',context!);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'SignedDocumentContent': JsonConverters.toJson(SignedDocumentContent,'Uint8List',context!)
    });

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

class SignDocumentProxyContent implements IConvertible
{
    String? ClientKey;
    String? AuthorizationID;
    String? UserSSN;
    Uint8List? DocumentContent;

    SignDocumentProxyContent({this.ClientKey,this.AuthorizationID,this.UserSSN,this.DocumentContent});
    SignDocumentProxyContent.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ClientKey = json['ClientKey'];
        AuthorizationID = json['AuthorizationID'];
        UserSSN = json['UserSSN'];
        DocumentContent = JsonConverters.fromJson(json['DocumentContent'],'Uint8List',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ClientKey': ClientKey,
        'AuthorizationID': AuthorizationID,
        'UserSSN': UserSSN,
        'DocumentContent': JsonConverters.toJson(DocumentContent,'Uint8List',context!)
    };

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

TypeContext _ctx = TypeContext(library: 'imzagerservices.eyyubiye.bel.tr', types: <String, TypeInfo> {
    'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()),
    'SignDocumentProxyContentResponse': TypeInfo(TypeOf.Class, create:() => SignDocumentProxyContentResponse()),
    'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)),
    'SignDocumentProxyContent': TypeInfo(TypeOf.Class, create:() => SignDocumentProxyContent()),
});

Dart SignDocumentProxyContent 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 /SignDocumentProxyContent/ HTTP/1.1 
Host: imzagerservices.eyyubiye.bel.tr 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<SignDocumentProxyContent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaB.Imzager.Services.ServiceModel">
  <AuthorizationID>String</AuthorizationID>
  <ClientKey>String</ClientKey>
  <DocumentContent>AA==</DocumentContent>
  <UserSSN>String</UserSSN>
</SignDocumentProxyContent>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<SignDocumentProxyContentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaB.Imzager.Services.ServiceModel">
  <ErrorMesage>String</ErrorMesage>
  <ServiceSuccessResult>false</ServiceSuccessResult>
  <SignedDocumentContent>AA==</SignedDocumentContent>
</SignDocumentProxyContentResponse>