ContactExpr contains the API contact information.
| 53 | |
| 54 | // ContactExpr contains the API contact information. |
| 55 | ContactExpr struct { |
| 56 | // Name of the contact person/organization |
| 57 | Name string `json:"name,omitempty"` |
| 58 | // Email address of the contact person/organization |
| 59 | Email string `json:"email,omitempty"` |
| 60 | // URL pointing to the contact information |
| 61 | URL string `json:"url,omitempty"` |
| 62 | } |
| 63 | |
| 64 | // LicenseExpr contains the license information for the API. |
| 65 | LicenseExpr struct { |
nothing calls this directly
no outgoing calls
no test coverage detected