Release series object (#37)
This commit is contained in:
		@@ -54,7 +54,7 @@ type Release struct {
 | 
			
		||||
	Released          string         `json:"released"`
 | 
			
		||||
	ReleasedFormatted string         `json:"released_formatted"`
 | 
			
		||||
	ResourceURL       string         `json:"resource_url"`
 | 
			
		||||
	Series            []string       `json:"series"`
 | 
			
		||||
	Series            []Series       `json:"series"`
 | 
			
		||||
	Status            string         `json:"status"`
 | 
			
		||||
	Styles            []string       `json:"styles"`
 | 
			
		||||
	Tracklist         []Track        `json:"tracklist"`
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										16
									
								
								models.go
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								models.go
									
									
									
									
									
								
							@@ -14,6 +14,17 @@ type Video struct {
 | 
			
		||||
	URI         string `json:"uri"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Series ...
 | 
			
		||||
type Series struct {
 | 
			
		||||
	Catno          string `json:"catno"`
 | 
			
		||||
	EntityType     string `json:"entity_type"`
 | 
			
		||||
	EntityTypeName string `json:"entity_type_name"`
 | 
			
		||||
	ID             int    `json:"id"`
 | 
			
		||||
	Name           string `json:"name"`
 | 
			
		||||
	ResourceURL    string `json:"resource_url"`
 | 
			
		||||
	ThumbnailURL   string `json:"thumbnail_url"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ArtistSource ...
 | 
			
		||||
type ArtistSource struct {
 | 
			
		||||
	Anv         string `json:"anv"`
 | 
			
		||||
@@ -57,8 +68,9 @@ type LabelSource struct {
 | 
			
		||||
 | 
			
		||||
// Identifier ...
 | 
			
		||||
type Identifier struct {
 | 
			
		||||
	Type  string `json:"type"`
 | 
			
		||||
	Value string `json:"value"`
 | 
			
		||||
	Description string `json:"description"`
 | 
			
		||||
	Type        string `json:"type"`
 | 
			
		||||
	Value       string `json:"value"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Format ...
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user