UNPKG

card-management-sdk

Version:

The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S

52 lines (48 loc) 1.07 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema, stringEnum } from '../schema.js'; /** * Enum for CardDetailsResponseInternationalPOSLanguageCodeEnum */ export enum CardDetailsResponseInternationalPOSLanguageCodeEnum { Deu = 'deu', Fra = 'fra', Bul = 'bul', Hrv = 'hrv', Ces = 'ces', Dan = 'dan', Fin = 'fin', Eng = 'eng', Ell = 'ell', Zho = 'zho', Hun = 'hun', Ita = 'ita', Ltz = 'ltz', Msa = 'msa', Nld = 'nld', Nob = 'nob', Urd = 'urd', Pol = 'pol', Por = 'por', Ron = 'ron', Rus = 'rus', Slk = 'slk', Slv = 'slv', Spa = 'spa', Swe = 'swe', Tur = 'tur', Tha = 'tha', Fil = 'fil', Est = 'est', Lav = 'lav', Lit = 'lit', } /** * Schema for CardDetailsResponseInternationalPOSLanguageCodeEnum */ export const cardDetailsResponseInternationalPOSLanguageCodeEnumSchema: Schema<CardDetailsResponseInternationalPOSLanguageCodeEnum> = stringEnum( CardDetailsResponseInternationalPOSLanguageCodeEnum );