fix
This commit is contained in:
@ -1306,8 +1306,8 @@ type CreateSevReq struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
Owner int `json:"owner"`
|
||||
@ -1344,12 +1344,12 @@ func (s *CreateSevReq) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *CreateSevReq) GetUID() OptString {
|
||||
func (s *CreateSevReq) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *CreateSevReq) GetCid() OptString {
|
||||
func (s *CreateSevReq) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -1399,12 +1399,12 @@ func (s *CreateSevReq) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *CreateSevReq) SetUID(val OptString) {
|
||||
func (s *CreateSevReq) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *CreateSevReq) SetCid(val OptString) {
|
||||
func (s *CreateSevReq) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
@ -4604,8 +4604,8 @@ type SevCreate struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@ -4636,12 +4636,12 @@ func (s *SevCreate) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *SevCreate) GetUID() OptString {
|
||||
func (s *SevCreate) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *SevCreate) GetCid() OptString {
|
||||
func (s *SevCreate) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -4681,12 +4681,12 @@ func (s *SevCreate) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *SevCreate) SetUID(val OptString) {
|
||||
func (s *SevCreate) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *SevCreate) SetCid(val OptString) {
|
||||
func (s *SevCreate) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
@ -4709,8 +4709,8 @@ type SevList struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@ -4741,12 +4741,12 @@ func (s *SevList) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *SevList) GetUID() OptString {
|
||||
func (s *SevList) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *SevList) GetCid() OptString {
|
||||
func (s *SevList) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -4786,12 +4786,12 @@ func (s *SevList) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *SevList) SetUID(val OptString) {
|
||||
func (s *SevList) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *SevList) SetCid(val OptString) {
|
||||
func (s *SevList) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
@ -5357,8 +5357,8 @@ type SevRead struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@ -5389,12 +5389,12 @@ func (s *SevRead) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *SevRead) GetUID() OptString {
|
||||
func (s *SevRead) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *SevRead) GetCid() OptString {
|
||||
func (s *SevRead) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -5434,12 +5434,12 @@ func (s *SevRead) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *SevRead) SetUID(val OptString) {
|
||||
func (s *SevRead) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *SevRead) SetCid(val OptString) {
|
||||
func (s *SevRead) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
@ -5462,8 +5462,8 @@ type SevUpdate struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@ -5494,12 +5494,12 @@ func (s *SevUpdate) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *SevUpdate) GetUID() OptString {
|
||||
func (s *SevUpdate) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *SevUpdate) GetCid() OptString {
|
||||
func (s *SevUpdate) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -5539,12 +5539,12 @@ func (s *SevUpdate) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *SevUpdate) SetUID(val OptString) {
|
||||
func (s *SevUpdate) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *SevUpdate) SetCid(val OptString) {
|
||||
func (s *SevUpdate) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
@ -7198,8 +7198,8 @@ type UpdateSevReq struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
Owner OptInt `json:"owner"`
|
||||
}
|
||||
@ -7230,12 +7230,12 @@ func (s *UpdateSevReq) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *UpdateSevReq) GetUID() OptString {
|
||||
func (s *UpdateSevReq) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *UpdateSevReq) GetCid() OptString {
|
||||
func (s *UpdateSevReq) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -7275,12 +7275,12 @@ func (s *UpdateSevReq) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *UpdateSevReq) SetUID(val OptString) {
|
||||
func (s *UpdateSevReq) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *UpdateSevReq) SetCid(val OptString) {
|
||||
func (s *UpdateSevReq) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
@ -9949,8 +9949,8 @@ type UserSevList struct {
|
||||
Count OptInt `json:"count"`
|
||||
Handle OptString `json:"handle"`
|
||||
Did OptString `json:"did"`
|
||||
UID OptString `json:"uid"`
|
||||
Cid OptString `json:"cid"`
|
||||
UID OptInt `json:"uid"`
|
||||
Cid OptInt `json:"cid"`
|
||||
UpdatedAt OptDateTime `json:"updated_at"`
|
||||
CreatedAt OptDateTime `json:"created_at"`
|
||||
}
|
||||
@ -9981,12 +9981,12 @@ func (s *UserSevList) GetDid() OptString {
|
||||
}
|
||||
|
||||
// GetUID returns the value of UID.
|
||||
func (s *UserSevList) GetUID() OptString {
|
||||
func (s *UserSevList) GetUID() OptInt {
|
||||
return s.UID
|
||||
}
|
||||
|
||||
// GetCid returns the value of Cid.
|
||||
func (s *UserSevList) GetCid() OptString {
|
||||
func (s *UserSevList) GetCid() OptInt {
|
||||
return s.Cid
|
||||
}
|
||||
|
||||
@ -10026,12 +10026,12 @@ func (s *UserSevList) SetDid(val OptString) {
|
||||
}
|
||||
|
||||
// SetUID sets the value of UID.
|
||||
func (s *UserSevList) SetUID(val OptString) {
|
||||
func (s *UserSevList) SetUID(val OptInt) {
|
||||
s.UID = val
|
||||
}
|
||||
|
||||
// SetCid sets the value of Cid.
|
||||
func (s *UserSevList) SetCid(val OptString) {
|
||||
func (s *UserSevList) SetCid(val OptInt) {
|
||||
s.Cid = val
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user