31 lines
864 B
Markdown
31 lines
864 B
Markdown
# SpellCard
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**id** | **number** | | [optional] [default to undefined]
|
|
**cardType** | [**CardType**](CardType.md) | | [default to undefined]
|
|
**description** | **string** | | [default to undefined]
|
|
**name** | **string** | | [default to undefined]
|
|
**cardPrints** | [**Array<CardPrint>**](CardPrint.md) | | [default to undefined]
|
|
**type** | [**SpellCardType**](SpellCardType.md) | | [default to undefined]
|
|
|
|
## Example
|
|
|
|
```typescript
|
|
import { SpellCard } from './api';
|
|
|
|
const instance: SpellCard = {
|
|
id,
|
|
cardType,
|
|
description,
|
|
name,
|
|
cardPrints,
|
|
type,
|
|
};
|
|
```
|
|
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|