| Requires any of the roles: | bookingsupplier-administrator-write, superadmin | 
| GET | /rebatecodes/{RebateCodeId}/reports | Get a report as a PDF file | Get 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.bookmore.com', types: <String, TypeInfo> {
    'SendReceiptMethod': TypeInfo(TypeOf.Enum, enumValues:SendReceiptMethod.values),
    'ExportRebateCode': TypeInfo(TypeOf.Class, create:() => ExportRebateCode()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
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.bookmore.com 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{}