UNPKG

cobinhood-rx

Version:

CobinhoodRx is a rxjs node wrapper for the CobinhoodRx Api.

18 lines (13 loc) 493 B
import { JsonObject, JsonProperty } from 'json2typescript'; import { DateTimeConverter } from '../../../Converter/DateTimeConverter'; @JsonObject export class DepositAddress { @JsonProperty('currency', String) public Currency: string = undefined; @JsonProperty('address', String) public Address: string = undefined; @JsonProperty('created_at', DateTimeConverter) public CreatedAt: Date = undefined; @JsonProperty('type', String) public Type: string = undefined; }