Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fde33f7

Browse files
committedMar 17, 2025··
fix(abuse_report): method types
1 parent ac58938 commit fde33f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎abuse_reports/abusereport.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func NewAbuseReportService(opts ...option.RequestOption) (r *AbuseReportService)
3434
}
3535

3636
// Submit the Abuse Report of a particular type
37-
func (r *AbuseReportService) New(ctx context.Context, reportType AbuseReportNewParamsAbuseReportsDmcaReportReportType, params AbuseReportNewParams, opts ...option.RequestOption) (res *string, err error) {
37+
func (r *AbuseReportService) New(ctx context.Context, reportType AbuseReportNewParamsReportType, params AbuseReportNewParams, opts ...option.RequestOption) (res *string, err error) {
3838
var env AbuseReportNewResponseEnvelope
3939
opts = append(r.Options[:], opts...)
4040
if params.AccountID.Value == "" {

0 commit comments

Comments
 (0)
Please sign in to comment.