add new fields to contract
This commit is contained in:
parent
d1291f6755
commit
2f57643e2e
@ -347,9 +347,15 @@ export class Contract {
|
|||||||
@Checkable.List(Checkable.AnyObject)
|
@Checkable.List(Checkable.AnyObject)
|
||||||
auditors: any[];
|
auditors: any[];
|
||||||
|
|
||||||
@Checkable.String
|
/**
|
||||||
|
* DEPRECATED alias for pay_deadline.
|
||||||
|
*/
|
||||||
|
@Checkable.Optional(Checkable.String)
|
||||||
expiry: string;
|
expiry: string;
|
||||||
|
|
||||||
|
@Checkable.Optional(Checkable.String)
|
||||||
|
pay_deadline: string;
|
||||||
|
|
||||||
@Checkable.Any
|
@Checkable.Any
|
||||||
locations: any;
|
locations: any;
|
||||||
|
|
||||||
@ -383,9 +389,15 @@ export class Contract {
|
|||||||
@Checkable.Optional(Checkable.String)
|
@Checkable.Optional(Checkable.String)
|
||||||
repurchase_correlation_id: string;
|
repurchase_correlation_id: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DEPRECATED alias for instance
|
||||||
|
*/
|
||||||
@Checkable.Optional(Checkable.String)
|
@Checkable.Optional(Checkable.String)
|
||||||
receiver: string;
|
receiver: string;
|
||||||
|
|
||||||
|
@Checkable.Optional(Checkable.String)
|
||||||
|
instance: string;
|
||||||
|
|
||||||
static checked: (obj: any) => Contract;
|
static checked: (obj: any) => Contract;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user