""" Options: Date: 2024-06-26 11:38:07 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: CompanyCreditCardInformation.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum class ICompany: company_id: Optional[str] = None @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class BaseModel: pass @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class CreditCard(BaseModel): # @Ignore() is_valid: bool = False # @Required() company_id: Optional[str] = None id: int = 0 # @Required() name: Optional[str] = None # @Required() active: bool = False # @Required() type: Optional[str] = None # @Required() exp_year: Optional[str] = None # @Required() exp_month: Optional[str] = None # @Required() ticket_id: Optional[str] = None updated: Optional[datetime.datetime] = None created: Optional[datetime.datetime] = None modified_date: Optional[datetime.datetime] = None @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class CompanyCreditCardQueryResponse: # @ApiMember(Description="The credit card id") id: int = 0 """ The credit card id """ # @ApiMember(Description="The credit card name") name: Optional[str] = None """ The credit card name """ # @ApiMember(Description="If the credit card is active") active: bool = False """ If the credit card is active """ # @ApiMember(Description="If the credit card is valid (active and not expired)") is_valid: bool = False """ If the credit card is valid (active and not expired) """ # @ApiMember(Description="The credit card type") type: Optional[str] = None """ The credit card type """ # @ApiMember(Description="The credit card expiration Year") exp_year: Optional[str] = None """ The credit card expiration Year """ # @ApiMember(Description="The credit card expiration month") exp_month: Optional[str] = None """ The credit card expiration month """ # @ApiMember(Description="The credit card ticket name. This is secret information and won't be displayed") ticket_id: Optional[str] = None """ The credit card ticket name. This is secret information and won't be displayed """ # @ApiMember(Description="The date when the credit card was saved.") created: Optional[datetime.datetime] = None """ The date when the credit card was saved. """ # @ApiMember(Description="The date when the credit card was updated.") updated: Optional[datetime.datetime] = None """ The date when the credit card was updated. """ # @Route("/billing/company/creditcard", "GET") # @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) # @ValidateRequest(Validator="IsAuthenticated") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class CompanyCreditCardInformation(QueryDb2[CreditCard, CompanyCreditCardQueryResponse], IReturn[QueryResponse[CompanyCreditCardQueryResponse]], ICompany): # @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") company_id: Optional[str] = None """ The company id, if empty will use the company id for the user you are logged in with. """ # @ApiMember(DataType="boolean", Description="If you want to include only active credit cards", ParameterType="query") active: bool = False """ If you want to include only active credit cards """ # @ApiMember(DataType="boolean", Description="If you want to include only valid credit cards (not expired and valid)", ParameterType="query") is_valid: bool = False """ If you want to include only valid credit cards (not expired and valid) """