Merge pull request #153 from yunify/upgrade-DescribeNotificationLists

upgrade-DescribeNotificationLists
This commit is contained in:
roger 2020-04-14 20:06:11 +08:00 committed by GitHub
commit c7eee83bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}