BokaMera.API.Host

<back to all web services

PaysonApiSettingsQuery

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, bookingsupplier-administrator-read, superadmin
The following routes are available for this service:
GET/payment/payson/apisettingsGet payson api settingsGet payson api settings for the logged in company
import 'package:servicestack/servicestack.dart';

class PaysonApiSettingsQueryResponse implements IConvertible
{
    /**
    * The company id
    */
    // @ApiMember(Description="The company id")
    String? CompanyId;

    /**
    * The payson security user id
    */
    // @ApiMember(Description="The payson security user id")
    String? SecurityUserId;

    /**
    * The payson security user password
    */
    // @ApiMember(Description="The payson security user password")
    String? SecurityPassword;

    /**
    * The payson receiver email
    */
    // @ApiMember(Description="The payson receiver email")
    String? ReceiverEmail;

    /**
    * The payson receiver firstname
    */
    // @ApiMember(Description="The payson receiver firstname")
    String? ReceiverFirstname;

    /**
    * The payson receiver lastname
    */
    // @ApiMember(Description="The payson receiver lastname")
    String? ReceiverLastname;

    PaysonApiSettingsQueryResponse({this.CompanyId,this.SecurityUserId,this.SecurityPassword,this.ReceiverEmail,this.ReceiverFirstname,this.ReceiverLastname});
    PaysonApiSettingsQueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        CompanyId = json['CompanyId'];
        SecurityUserId = json['SecurityUserId'];
        SecurityPassword = json['SecurityPassword'];
        ReceiverEmail = json['ReceiverEmail'];
        ReceiverFirstname = json['ReceiverFirstname'];
        ReceiverLastname = json['ReceiverLastname'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'CompanyId': CompanyId,
        'SecurityUserId': SecurityUserId,
        'SecurityPassword': SecurityPassword,
        'ReceiverEmail': ReceiverEmail,
        'ReceiverFirstname': ReceiverFirstname,
        'ReceiverLastname': ReceiverLastname
    };

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

// @ValidateRequest(Validator="IsAuthenticated")
class PaysonApiSettingsQuery implements ICompany, IConvertible
{
    /**
    * The company id, if empty will use the company id for the user you are logged in with.
    */
    // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
    String? CompanyId;

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

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

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

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

TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: <String, TypeInfo> {
    'PaysonApiSettingsQueryResponse': TypeInfo(TypeOf.Class, create:() => PaysonApiSettingsQueryResponse()),
    'PaysonApiSettingsQuery': TypeInfo(TypeOf.Class, create:() => PaysonApiSettingsQuery()),
});

Dart PaysonApiSettingsQuery 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.

GET /payment/payson/apisettings HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"SecurityUserId":"String","SecurityPassword":"String","ReceiverEmail":"String","ReceiverFirstname":"String","ReceiverLastname":"String"}