upgrade-DescribeNotificationLists

This commit is contained in:
huyujie 2020-04-13 17:00:44 +08:00
parent 03efdbb11f
commit 1d26ea8f21
1 changed files with 1 additions and 8 deletions

View File

@ -76,7 +76,7 @@ type DescribeNotificationListsInput struct {
Limit *int `json:"limit" name:"limit" default:"10" location:"params"`
NotificationLists []*string `json:"notification_lists" name:"notification_lists" location:"params"` // Required
Offset *int `json:"offset" name:"offset" default:"0" location:"params"`
Owner *string `json:"owner" name:"owner" location:"params"` // Required
Owner *string `json:"owner" name:"owner" location:"params"`
}
func (v *DescribeNotificationListsInput) Validate() error {
@ -88,13 +88,6 @@ func (v *DescribeNotificationListsInput) Validate() error {
}
}
if v.Owner == nil {
return errors.ParameterRequiredError{
ParameterName: "Owner",
ParentName: "DescribeNotificationListsInput",
}
}
return nil
}