valid-method-name-conventions
Overview
This rule belongs to the apimatic-codegen-validation ruleset and states that:
Method names must use letters, numbers, spaces, underscores and dashes only. The name must start with a letter.
| Property | Value |
|---|---|
| Enabled | Yes |
| Maximum Severity | Error |
| Message | Specified method name is invalid. |
| Code | APIMATICCODEGEN_V045 |
| Type | Validation |
| Rule System | Semantic |
| Broad Category | Endpoints |
| Products Impacted | Code Generation, Developer Experience Portal |
| Tags | apimatic code generation codegen sdks portal docs validation apimatic method name endpoint |
Suggested Fixes
- Make sure the name does not contain any forbidden characters.
- Make sure the name starts with a letter.
- Use only letters, numbers, spaces, underscores and dashes.
- Must match regex pattern ^[a-zA-Z]+[a-zA-Z-_ 0-9]*$