/* Options: Date: 2024-05-09 17:51:40 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PaymentProfileBalanceInquiryEndpoint.* //ExcludeTypes: //DefaultImports: */ export interface IApiKeyEndpoint { ApiKey: string; } export class PaymentProfileBalanceInquiryRequest { public TerminalIpAddress: string; public AcctToken: string; public ProfileToken: string; public StoreId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PamentProfileBalanceInquiryEndpointResponse { public Success: boolean; public Last4: string; public AccountBalance?: number; public ResponseCode: string; public Message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/sales/paymentProfile/balanceInquiry", "GET") // @ApiResponse(Description="Looks up the balance of a payment profile created by the Vault API", ResponseType="typeof(ClubReady.Payments.PaymentProfileBalanceInquiryResponse)", StatusCode=200) export class PaymentProfileBalanceInquiryEndpoint extends PaymentProfileBalanceInquiryRequest implements IReturn, IApiKeyEndpoint { /** * Api Authentication Key */ // @ApiMember(Description="Api Authentication Key", IsRequired=true, ParameterType="query") public ApiKey: string; /** * Store Id */ // @ApiMember(Description="Store Id", IsRequired=true, ParameterType="query") public StoreId: number; /** * Encoded data uniquely identifying the payment profile. Long term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). The length is usually 80 characters. */ // @ApiMember(Description="\r\nEncoded data uniquely identifying the payment profile. \r\nLong term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). \r\nThe length is usually 80 characters.", IsRequired=true) public AcctToken: string; /** * Encoded data containing non-PCI information about the Payment Profile. ProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,it cannot be accepted and a new profile will have to be created with a new AcctToken. The timevalidation is to prevent old tokens from be re-played at a later time. The length is variable, but generally around 1,000 characters. */ // @ApiMember(Description="\r\nEncoded data containing non-PCI information about the Payment Profile. \r\n\r\nProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,\r\nit cannot be accepted and a new profile will have to be created with a new AcctToken. The time\r\nvalidation is to prevent old tokens from be re-played at a later time. \r\n\r\nThe length is variable, but generally around 1,000 characters.") public ProfileToken: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'PaymentProfileBalanceInquiryEndpoint'; } public getMethod() { return 'GET'; } public createResponse() { return new PamentProfileBalanceInquiryEndpointResponse(); } }