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"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
@ -1354,6 +1355,11 @@ func (s *CreateSevReq) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *CreateSevReq) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *CreateSevReq) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -1414,6 +1420,11 @@ func (s *CreateSevReq) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *CreateSevReq) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *CreateSevReq) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
@ -4617,6 +4628,7 @@ type SevCreate struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
@ -4657,6 +4669,11 @@ func (s *SevCreate) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *SevCreate) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevCreate) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -4707,6 +4724,11 @@ func (s *SevCreate) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *SevCreate) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevCreate) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
@ -4733,6 +4755,7 @@ type SevList struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
@ -4773,6 +4796,11 @@ func (s *SevList) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *SevList) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevList) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -4823,6 +4851,11 @@ func (s *SevList) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *SevList) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevList) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
@ -5392,6 +5425,7 @@ type SevRead struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
@ -5432,6 +5466,11 @@ func (s *SevRead) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *SevRead) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevRead) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -5482,6 +5521,11 @@ func (s *SevRead) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *SevRead) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevRead) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
@ -5508,6 +5552,7 @@ type SevUpdate struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
@ -5548,6 +5593,11 @@ func (s *SevUpdate) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *SevUpdate) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *SevUpdate) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -5598,6 +5648,11 @@ func (s *SevUpdate) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *SevUpdate) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *SevUpdate) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
@ -7255,6 +7310,7 @@ type UpdateSevReq struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
Owner OptInt `json:"owner"`
|
||||
@ -7295,6 +7351,11 @@ func (s *UpdateSevReq) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *UpdateSevReq) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *UpdateSevReq) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -7345,6 +7406,11 @@ func (s *UpdateSevReq) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *UpdateSevReq) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *UpdateSevReq) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
@ -10017,6 +10083,7 @@ type UserSevList struct {
|
||||
Did OptString `json:"did"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
Cp OptInt `json:"cp"`
|
||||
Card OptInt `json:"card"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
@ -10057,6 +10124,11 @@ func (s *UserSevList) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
// GetCp returns the value of Cp.
|
||||
func (s *UserSevList) GetCp() OptInt {
|
||||
return s.Cp
|
||||
}
|
||||
|
||||
// GetCard returns the value of Card.
|
||||
func (s *UserSevList) GetCard() OptInt {
|
||||
return s.Card
|
||||
@ -10107,6 +10179,11 @@ func (s *UserSevList) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
// SetCp sets the value of Cp.
|
||||
func (s *UserSevList) SetCp(val OptInt) {
|
||||
s.Cp = val
|
||||
}
|
||||
|
||||
// SetCard sets the value of Card.
|
||||
func (s *UserSevList) SetCard(val OptInt) {
|
||||
s.Card = val
|
||||
|
Reference in New Issue
Block a user