UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

86 lines (79 loc) 2.03 kB
/** * Onshape REST API * The Onshape REST API consumed by all clients. * * OpenAPI spec version: 1.93 * Contact: api-support@onshape.zendesk.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Card } from './card'; export class ThreeDSecure { 'id'?: string; 'object'?: string; 'amount'?: number; 'authenticated'?: boolean; 'card'?: Card; 'created'?: number; 'currency'?: string; 'livemode'?: boolean; 'redirectURL'?: string; 'status'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "object", "baseName": "object", "type": "string" }, { "name": "amount", "baseName": "amount", "type": "number" }, { "name": "authenticated", "baseName": "authenticated", "type": "boolean" }, { "name": "card", "baseName": "card", "type": "Card" }, { "name": "created", "baseName": "created", "type": "number" }, { "name": "currency", "baseName": "currency", "type": "string" }, { "name": "livemode", "baseName": "livemode", "type": "boolean" }, { "name": "redirectURL", "baseName": "redirectURL", "type": "string" }, { "name": "status", "baseName": "status", "type": "string" } ]; static getAttributeTypeMap() { return ThreeDSecure.attributeTypeMap; } }