31 lines
659 B
TypeScript
31 lines
659 B
TypeScript
/**
|
|
* dex API
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
export interface Card {
|
|
id?: number;
|
|
description: string;
|
|
pendulumDescription?: string | null;
|
|
defense?: number | null;
|
|
attack?: number | null;
|
|
health?: number | null;
|
|
level?: number | null;
|
|
linkValue?: number | null;
|
|
name: string;
|
|
type: string;
|
|
frameType: string;
|
|
archetype?: string | null;
|
|
race?: string | null;
|
|
attribute?: string | null;
|
|
decks: { [key: string]: number; };
|
|
imageApiPath: string;
|
|
}
|
|
|