/* Options: Date: 2024-06-26 10:23:28 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReferenceQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class BaseModel implements IConvertible { BaseModel(); BaseModel.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "BaseModel"; TypeContext? context = _ctx; } class ExternalReference extends BaseModel implements IConvertible { // @Required() String? CompanyId; // @Required() String? Id; // @Required() String? OwnerId; // @Required() String? ReferenceType; String? ExternalData; String? CreatedBy; // @Required() DateTime? Updated; // @Required() DateTime? Created; DateTime? ModifiedDate; ExternalReference({this.CompanyId,this.Id,this.OwnerId,this.ReferenceType,this.ExternalData,this.CreatedBy,this.Updated,this.Created,this.ModifiedDate}); ExternalReference.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CompanyId = json['CompanyId']; Id = json['Id']; OwnerId = json['OwnerId']; ReferenceType = json['ReferenceType']; ExternalData = json['ExternalData']; CreatedBy = json['CreatedBy']; Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'CompanyId': CompanyId, 'Id': Id, 'OwnerId': OwnerId, 'ReferenceType': ReferenceType, 'ExternalData': ExternalData, 'CreatedBy': CreatedBy, 'Updated': JsonConverters.toJson(Updated,'DateTime',context!), 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "ExternalReference"; TypeContext? context = _ctx; } class ReferenceQueryResponse implements IConvertible { /** * The company id */ // @ApiMember(Description="The company id") String? CompanyId; /** * Id of the reference */ // @ApiMember(Description="Id of the reference") String? Id; /** * Internal Id of the reference. Example could be the Booking Id */ // @ApiMember(Description="Internal Id of the reference. Example could be the Booking Id") String? OwnerId; /** * The type of reference, you can name this parameter what you like. Example could be system_bookingid where the system is the external system */ // @ApiMember(Description="The type of reference, you can name this parameter what you like. Example could be system_bookingid where the system is the external system") String? ReferenceType; /** * The external data. Could be a Id or a JSON object or anything */ // @ApiMember(Description="The external data. Could be a Id or a JSON object or anything") String? ExternalData; /** * Will show when the reference was updated. */ // @ApiMember(DataType="datetime", Description="Will show when the reference was updated.") DateTime? Updated; /** * Will show when the reference was created. */ // @ApiMember(DataType="datetime", Description="Will show when the reference was created.") DateTime? Created; /** * Will show who created the reference. */ // @ApiMember(DataType="datetime", Description="Will show who created the reference.") String? CreatedBy; /** * Will show who update the reference. */ // @ApiMember(DataType="datetime", Description="Will show who update the reference.") String? UpdatedBy; ResponseStatus? ResponseStatus; ReferenceQueryResponse({this.CompanyId,this.Id,this.OwnerId,this.ReferenceType,this.ExternalData,this.Updated,this.Created,this.CreatedBy,this.UpdatedBy,this.ResponseStatus}); ReferenceQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Id = json['Id']; OwnerId = json['OwnerId']; ReferenceType = json['ReferenceType']; ExternalData = json['ExternalData']; Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); CreatedBy = json['CreatedBy']; UpdatedBy = json['UpdatedBy']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'CompanyId': CompanyId, 'Id': Id, 'OwnerId': OwnerId, 'ReferenceType': ReferenceType, 'ExternalData': ExternalData, 'Updated': JsonConverters.toJson(Updated,'DateTime',context!), 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'CreatedBy': CreatedBy, 'UpdatedBy': UpdatedBy, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ReferenceQueryResponse"; TypeContext? context = _ctx; } // @Route("/references", "GET") class ReferenceQuery extends QueryDb2 implements IReturn>, ICompany, IConvertible, IGet { /** * 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; /** * Id of the reference */ // @ApiMember(Description="Id of the reference") String? Id; /** * Internal Id of the reference. Example could be the Booking Id */ // @ApiMember(Description="Internal Id of the reference. Example could be the Booking Id") String? OwnerId; /** * The type of reference, you can name this parameter what you like. Example could be system_bookingid where the system is the external system */ // @ApiMember(Description="The type of reference, you can name this parameter what you like. Example could be system_bookingid where the system is the external system") String? ReferenceType; /** * The external data. Could be a Id or a JSON object or anything */ // @ApiMember(Description="The external data. Could be a Id or a JSON object or anything") String? ExternalData; ReferenceQuery({this.CompanyId,this.Id,this.OwnerId,this.ReferenceType,this.ExternalData}); ReferenceQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CompanyId = json['CompanyId']; Id = json['Id']; OwnerId = json['OwnerId']; ReferenceType = json['ReferenceType']; ExternalData = json['ExternalData']; return this; } Map toJson() => super.toJson()..addAll({ 'CompanyId': CompanyId, 'Id': Id, 'OwnerId': OwnerId, 'ReferenceType': ReferenceType, 'ExternalData': ExternalData }); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "ReferenceQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'ExternalReference': TypeInfo(TypeOf.Class, create:() => ExternalReference()), 'ReferenceQueryResponse': TypeInfo(TypeOf.Class, create:() => ReferenceQueryResponse()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'ReferenceQuery': TypeInfo(TypeOf.Class, create:() => ReferenceQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });