/** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CardBrand } from './CardBrand'; /** * * @export * @interface CardPaymentMethod */ export interface CardPaymentMethod { /** * * @type {string} * @memberof CardPaymentMethod */ last4: string; /** * * @type {CardBrand} * @memberof CardPaymentMethod */ brand: CardBrand; } /** * Check if a given object implements the CardPaymentMethod interface. */ export declare function instanceOfCardPaymentMethod(value: object): boolean; export declare function CardPaymentMethodFromJSON(json: any): CardPaymentMethod; export declare function CardPaymentMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardPaymentMethod; export declare function CardPaymentMethodToJSON(value?: CardPaymentMethod | null): any;