Better tests (check that response match the structure) (#52)
Trailing zeros were removed from time in responses because of json marshaling features
This commit is contained in:
		@@ -17,6 +17,12 @@ type GetCurrentSellerRatingInfoResponse struct {
 | 
			
		||||
 | 
			
		||||
	// Rating groups list
 | 
			
		||||
	Groups []GetCurrentSellerRatingInfoGroup `json:"groups"`
 | 
			
		||||
 | 
			
		||||
	// An indication that the penalty points balance is exceeded
 | 
			
		||||
	PenaltyScoreExceeded bool `json:"penalty_score_exceeded"`
 | 
			
		||||
 | 
			
		||||
	// An indication that you participate in the Premium program
 | 
			
		||||
	Premium bool `json:"premium"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type GetCurrentSellerRatingInfoGroup struct {
 | 
			
		||||
@@ -25,12 +31,6 @@ type GetCurrentSellerRatingInfoGroup struct {
 | 
			
		||||
 | 
			
		||||
	// Ratings list
 | 
			
		||||
	Items []GetCurrentSellerRatingInfoGroupItem `json:"items"`
 | 
			
		||||
 | 
			
		||||
	// An indication that the penalty points balance is exceeded
 | 
			
		||||
	PenaltyScoreExceeded bool `json:"penalty_score_exceeded"`
 | 
			
		||||
 | 
			
		||||
	// An indication that you participate in the Premium program
 | 
			
		||||
	Premium bool `json:"premium"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type GetCurrentSellerRatingInfoGroupItem struct {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user