Merge branch 'fund-ids'
This commit is contained in:
commit
6782b19c3d
2 changed files with 11 additions and 10 deletions
|
@ -248,15 +248,16 @@ type Location struct {
|
||||||
Longitude *string `json:"longitude,omitempty"`
|
Longitude *string `json:"longitude,omitempty"`
|
||||||
}
|
}
|
||||||
type ClaimCreateOptions struct {
|
type ClaimCreateOptions struct {
|
||||||
Title *string `json:"title,omitempty"`
|
Title *string `json:"title,omitempty"`
|
||||||
Description *string `json:"description,omitempty"`
|
Description *string `json:"description,omitempty"`
|
||||||
Tags []string `json:"tags,omitempty"`
|
Tags []string `json:"tags,omitempty"`
|
||||||
Languages []string `json:"languages,omitempty"`
|
Languages []string `json:"languages,omitempty"`
|
||||||
Locations []Location `json:"locations,omitempty"`
|
Locations []Location `json:"locations,omitempty"`
|
||||||
ThumbnailURL *string `json:"thumbnail_url,omitempty"`
|
ThumbnailURL *string `json:"thumbnail_url,omitempty"`
|
||||||
AccountID *string `json:"account_id,omitempty"`
|
AccountID *string `json:"account_id,omitempty"`
|
||||||
ClaimAddress *string `json:"claim_address,omitempty"`
|
ClaimAddress *string `json:"claim_address,omitempty"`
|
||||||
Preview *bool `json:"preview,omitempty"`
|
Preview *bool `json:"preview,omitempty"`
|
||||||
|
FundingAccountIDs []string `json:"funding_account_ids,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChannelCreateOptions struct {
|
type ChannelCreateOptions struct {
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -50,4 +50,4 @@ require (
|
||||||
gopkg.in/yaml.v2 v2.2.4 // indirect
|
gopkg.in/yaml.v2 v2.2.4 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
go 1.12
|
go 1.13
|
||||||
|
|
Loading…
Add table
Reference in a new issue