Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
PUT | /payment/payson/apisettings/ | Update payson api settings | Update 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 UpdatePaysonApiSettings 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;
/**
* 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;
UpdatePaysonApiSettings({this.CompanyId,this.SecurityUserId,this.SecurityPassword,this.ReceiverEmail,this.ReceiverFirstname,this.ReceiverLastname});
UpdatePaysonApiSettings.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() => "UpdatePaysonApiSettings";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: <String, TypeInfo> {
'PaysonApiSettingsQueryResponse': TypeInfo(TypeOf.Class, create:() => PaysonApiSettingsQueryResponse()),
'UpdatePaysonApiSettings': TypeInfo(TypeOf.Class, create:() => UpdatePaysonApiSettings()),
});
Dart UpdatePaysonApiSettings DTOs
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.
PUT /payment/payson/apisettings/ HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdatePaysonApiSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
<ReceiverEmail>String</ReceiverEmail>
<ReceiverFirstname>String</ReceiverFirstname>
<ReceiverLastname>String</ReceiverLastname>
<SecurityPassword>String</SecurityPassword>
<SecurityUserId>String</SecurityUserId>
</UpdatePaysonApiSettings>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <PaysonApiSettingsQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <ReceiverEmail>String</ReceiverEmail> <ReceiverFirstname>String</ReceiverFirstname> <ReceiverLastname>String</ReceiverLastname> <SecurityPassword>String</SecurityPassword> <SecurityUserId>String</SecurityUserId> </PaysonApiSettingsQueryResponse>