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 .other suffix or ?format=other

HTTP + OTHER

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: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"ClientKey":"String","AuthorizationID":"String","UserSSN":"String","DocumentContent":"AA=="}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"SignedDocumentContent":"AA==","ServiceSuccessResult":false,"ErrorMesage":"String"}