fix
This commit is contained in:
@@ -1308,6 +1308,7 @@ type CreateSevReq struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
Owner int `json:"owner"`
|
||||
@@ -1353,6 +1354,11 @@ func (s *CreateSevReq) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *CreateSevReq) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *CreateSevReq) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -1408,6 +1414,11 @@ func (s *CreateSevReq) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *CreateSevReq) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *CreateSevReq) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
@@ -4606,6 +4617,7 @@ type SevCreate struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@@ -4645,6 +4657,11 @@ func (s *SevCreate) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevCreate) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *SevCreate) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -4690,6 +4707,11 @@ func (s *SevCreate) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevCreate) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *SevCreate) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
@@ -4711,6 +4733,7 @@ type SevList struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@@ -4750,6 +4773,11 @@ func (s *SevList) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevList) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *SevList) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -4795,6 +4823,11 @@ func (s *SevList) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevList) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *SevList) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
@@ -5359,6 +5392,7 @@ type SevRead struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@@ -5398,6 +5432,11 @@ func (s *SevRead) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevRead) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *SevRead) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -5443,6 +5482,11 @@ func (s *SevRead) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevRead) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *SevRead) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
@@ -5464,6 +5508,7 @@ type SevUpdate struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@@ -5503,6 +5548,11 @@ func (s *SevUpdate) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevUpdate) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *SevUpdate) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -5548,6 +5598,11 @@ func (s *SevUpdate) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevUpdate) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *SevUpdate) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
@@ -7200,6 +7255,7 @@ type UpdateSevReq struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
Owner OptInt `json:"owner"`
|
||||
}
|
||||
@@ -7239,6 +7295,11 @@ func (s *UpdateSevReq) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *UpdateSevReq) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *UpdateSevReq) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -7284,6 +7345,11 @@ func (s *UpdateSevReq) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *UpdateSevReq) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *UpdateSevReq) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
@@ -9951,6 +10017,7 @@ type UserSevList struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@@ -9990,6 +10057,11 @@ func (s *UserSevList) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *UserSevList) GetCard() OptInt {
|
||||
return s.Card
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the value of UpdatedAt.
|
||||
func (s *UserSevList) GetUpdatedAt() OptDateTime {
|
||||
return s.UpdatedAt
|
||||
@@ -10035,6 +10107,11 @@ func (s *UserSevList) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *UserSevList) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
}
|
||||
|
||||
// SetUpdatedAt sets the value of UpdatedAt.
|
||||
func (s *UserSevList) SetUpdatedAt(val OptDateTime) {
|
||||
s.UpdatedAt = val
|
||||
|
Reference in New Issue
Block a user