/* Options: Date: 2024-06-26 11:36:14 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: CreateCompanyCreditCard.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class CompanyCreditCardQueryResponse implements IConvertible { /** * The credit card id */ // @ApiMember(Description="The credit card id") int? Id; /** * The credit card name */ // @ApiMember(Description="The credit card name") String? Name; /** * If the credit card is active */ // @ApiMember(Description="If the credit card is active") bool? Active; /** * If the credit card is valid (active and not expired) */ // @ApiMember(Description="If the credit card is valid (active and not expired)") bool? IsValid; /** * The credit card type */ // @ApiMember(Description="The credit card type") String? Type; /** * The credit card expiration Year */ // @ApiMember(Description="The credit card expiration Year") String? ExpYear; /** * The credit card expiration month */ // @ApiMember(Description="The credit card expiration month") String? ExpMonth; /** * The credit card ticket name. This is secret information and won't be displayed */ // @ApiMember(Description="The credit card ticket name. This is secret information and won't be displayed") String? TicketId; /** * The date when the credit card was saved. */ // @ApiMember(Description="The date when the credit card was saved.") DateTime? Created; /** * The date when the credit card was updated. */ // @ApiMember(Description="The date when the credit card was updated.") DateTime? Updated; CompanyCreditCardQueryResponse({this.Id,this.Name,this.Active,this.IsValid,this.Type,this.ExpYear,this.ExpMonth,this.TicketId,this.Created,this.Updated}); CompanyCreditCardQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; Active = json['Active']; IsValid = json['IsValid']; Type = json['Type']; ExpYear = json['ExpYear']; ExpMonth = json['ExpMonth']; TicketId = json['TicketId']; Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'Active': Active, 'IsValid': IsValid, 'Type': Type, 'ExpYear': ExpYear, 'ExpMonth': ExpMonth, 'TicketId': TicketId, 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'Updated': JsonConverters.toJson(Updated,'DateTime',context!) }; getTypeName() => "CompanyCreditCardQueryResponse"; TypeContext? context = _ctx; } // @Route("/billing/company/creditcard", "POST") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") class CreateCompanyCreditCard 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; /** * The credit card name */ // @ApiMember(Description="The credit card name") String? Name; /** * The credit card type. In example Mastercard, Visa */ // @ApiMember(Description="The credit card type. In example Mastercard, Visa") String? Type; /** * The credit card expiration Year */ // @ApiMember(Description="The credit card expiration Year") String? ExpYear; /** * The credit card expiration month */ // @ApiMember(Description="The credit card expiration month") String? ExpMonth; /** * The credit card ticket name. This is secret information and won't be displayed */ // @ApiMember(Description="The credit card ticket name. This is secret information and won't be displayed") String? TicketId; CreateCompanyCreditCard({this.CompanyId,this.Name,this.Type,this.ExpYear,this.ExpMonth,this.TicketId}); CreateCompanyCreditCard.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Name = json['Name']; Type = json['Type']; ExpYear = json['ExpYear']; ExpMonth = json['ExpMonth']; TicketId = json['TicketId']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'Name': Name, 'Type': Type, 'ExpYear': ExpYear, 'ExpMonth': ExpMonth, 'TicketId': TicketId }; createResponse() => CompanyCreditCardQueryResponse(); getResponseTypeName() => "CompanyCreditCardQueryResponse"; getTypeName() => "CreateCompanyCreditCard"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'CompanyCreditCardQueryResponse': TypeInfo(TypeOf.Class, create:() => CompanyCreditCardQueryResponse()), 'CreateCompanyCreditCard': TypeInfo(TypeOf.Class, create:() => CreateCompanyCreditCard()), });