10 lines
284 B
Go
10 lines
284 B
Go
|
package mutations
|
||
|
|
||
|
import "git.lehouerou.net/laurent/sorare/types"
|
||
|
|
||
|
type SettlementInfo struct {
|
||
|
Currency types.SupportedCurrency `json:"currency"`
|
||
|
PaymentMethod types.PaymentMethod `json:"paymentMethod"`
|
||
|
ExchangeRateId string `json:"exchangeRateId"`
|
||
|
}
|