23 lines
		
	
	
		
			437 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			437 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package models
 | |
| 
 | |
| type PoolDepositResult struct {
 | |
| 	TrackingId string `json:"trackingId"`
 | |
| }
 | |
| 
 | |
| type PoolSwapQuoteResult struct {
 | |
| 	IncludesFeesDeduction bool   `json:"includesFeesDeduction"`
 | |
| 	OutValue              string `json:"outValue"`
 | |
| }
 | |
| 
 | |
| type PoolSwapResult struct {
 | |
| 	TrackingId string `json:"trackingId"`
 | |
| }
 | |
| 
 | |
| type MaxLimitResult struct {
 | |
| 	Max string `json:"max"`
 | |
| }
 | |
| 
 | |
| type TokenInPoolResult struct {
 | |
| 	CanSwapFrom bool `json:"canSwapFrom"`
 | |
| }
 |