cobinhood-rx
Version:
CobinhoodRx is a rxjs node wrapper for the CobinhoodRx Api.
24 lines (17 loc) • 630 B
text/typescript
import { JsonObject, JsonProperty } from 'json2typescript';
import { DateTimeConverter } from '../../../Converter/DateTimeConverter';
export class WithdrawalAddress {
('id', String)
public Id: string = undefined;
('currency', String)
public Currency: string = undefined;
('name', String)
public Name: string = undefined;
('type', String)
public Type: string = undefined;
('address', String)
public Address: string = undefined;
('created_at', DateTimeConverter)
public CreatedAt: Date = undefined;
}