Class ServiceApiContact
Holds the contact information for a service API. This maps closely to the Microsoft.OpenApi.Models.OpenApiContact class.
Namespace: Neon.Service
Assembly: Neon.Common.dll
Syntax
public class ServiceApiContact
Properties
The email address of the contact person or organization formatted as a URL like: mailto:joe@blow.com
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The name of the contact person or organiztion.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Url
The URL pointing to the contact information.
Declaration
public Uri Url { get; set; }
Property Value
Type | Description |
---|---|
Uri |