Skip to content

Commit

Permalink
Added ArchivedAt field to eula model.
Browse files Browse the repository at this point in the history
[#175603180](https://www.pivotaltracker.com/story/show/175603180)

Signed-off-by: Nicholas Eden-Walker <[email protected]>
  • Loading branch information
bsoroushian authored and nedenwalker committed Nov 10, 2020
1 parent 4c50a73 commit f96aacb
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions eulas.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ type EULAsService struct {
}

type EULA struct {
Slug string `json:"slug,omitempty" yaml:"slug,omitempty"`
ID int `json:"id,omitempty" yaml:"id,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
Content string `json:"content,omitempty" yaml:"content,omitempty"`
Links *Links `json:"_links,omitempty" yaml:"_links,omitempty"`
Slug string `json:"slug,omitempty" yaml:"slug,omitempty"`
ID int `json:"id,omitempty" yaml:"id,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
Content string `json:"content,omitempty" yaml:"content,omitempty"`
ArchivedAt string `json:"archived_at,omitempty" yaml:"archived_at,omitempty"`
Links *Links `json:"_links,omitempty" yaml:"_links,omitempty"`
}

type EULAsResponse struct {
Expand Down

0 comments on commit f96aacb

Please sign in to comment.