Class: Contact
protoc_gen_openapiv2.options.Contact
Contact is a representation of OpenAPI v2 specification's Contact object.
See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#contactObject
Example:
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = { info: { ... contact: { name: "gRPC-Gateway project"; url: "https://github.com/grpc-ecosystem/grpc-gateway"; email: "none@example.com"; }; ... }; ... };
Implements
Constructors
constructor
• new Contact(properties?): Contact
Constructs a new Contact.
Parameters
| Name | Type | Description |
|---|---|---|
properties? | IContact | Properties to set |
Returns
Properties
email
• email: string
The email address of the contact person/organization. MUST be in the format of an email address.
Implementation of
name
• name: string
The identifying name of the contact person/organization.
Implementation of
url
• url: string
The URL pointing to the contact information. MUST be in the format of a URL.
Implementation of
Methods
toJSON
▸ toJSON(): Object
Converts this Contact to JSON.
Returns
Object
JSON object
create
▸ create(properties?): Contact
Creates a new Contact instance using the specified properties.
Parameters
| Name | Type | Description |
|---|---|---|
properties? | IContact | Properties to set |
Returns
Contact instance
decode
▸ decode(reader, length?): Contact
Decodes a Contact message from the specified reader or buffer.
Parameters
| Name | Type | Description |
|---|---|---|
reader | Uint8Array | Reader | Reader or buffer to decode from |
length? | number | Message length if known beforehand |