/* Options: Date: 2024-07-03 13:04:45 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddReference.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } 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", "POST") class AddReference implements IReturn, ICompany, IConvertible, IPost { /** * 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; /** * 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 who created the reference. */ // @ApiMember(DataType="datetime", Description="Will show who created the reference.") String? CreatedBy; AddReference({this.CompanyId,this.OwnerId,this.ReferenceType,this.ExternalData,this.CreatedBy}); AddReference.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; OwnerId = json['OwnerId']; ReferenceType = json['ReferenceType']; ExternalData = json['ExternalData']; CreatedBy = json['CreatedBy']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'OwnerId': OwnerId, 'ReferenceType': ReferenceType, 'ExternalData': ExternalData, 'CreatedBy': CreatedBy }; createResponse() => ReferenceQueryResponse(); getResponseTypeName() => "ReferenceQueryResponse"; getTypeName() => "AddReference"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'ReferenceQueryResponse': TypeInfo(TypeOf.Class, create:() => ReferenceQueryResponse()), 'AddReference': TypeInfo(TypeOf.Class, create:() => AddReference()), });