/** * 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. */ /** * * @export */ export declare const CardBrand: { readonly Amex: "amex"; readonly CartesBancaires: "cartes_bancaires"; readonly Diners: "diners"; readonly Discover: "discover"; readonly Jcb: "jcb"; readonly Mastercard: "mastercard"; readonly Visa: "visa"; readonly Unionpay: "unionpay"; readonly Card: "card"; }; export type CardBrand = typeof CardBrand[keyof typeof CardBrand]; export declare function CardBrandFromJSON(json: any): CardBrand; export declare function CardBrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardBrand; export declare function CardBrandToJSON(value?: CardBrand | null): any;