BokaMera.API.Host

<back to all web services

ExportRebateCode

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
GET/rebatecodes/{RebateCodeId}/reportsGet a report as a PDF fileGet a PDF report.
import 'package:servicestack/servicestack.dart';

enum SendReceiptMethod
{
    Email,
    PdfExport,
}

// @ValidateRequest(Validator="IsAuthenticated")
class ExportRebateCode implements ICompany, IConvertible
{
    /**
    * Id of the rebate code
    */
    // @ApiMember(Description="Id of the rebate code", IsRequired=true, ParameterType="path")
    int? RebateCodeId;

    /**
    * 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;

    SendReceiptMethod? SendReceiptMethod;

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

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

    Map<String, dynamic> toJson() => {
        'RebateCodeId': RebateCodeId,
        'CompanyId': CompanyId,
        'SendReceiptMethod': JsonConverters.toJson(SendReceiptMethod,'SendReceiptMethod',context!)
    };

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

TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: <String, TypeInfo> {
    'SendReceiptMethod': TypeInfo(TypeOf.Enum, enumValues:SendReceiptMethod.values),
    'ExportRebateCode': TypeInfo(TypeOf.Class, create:() => ExportRebateCode()),
});

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

GET /rebatecodes/{RebateCodeId}/reports HTTP/1.1 
Host: api.bokamera.se 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	
}