Interface Openapiv2.ContactOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Openapiv2.Contact
,Openapiv2.Contact.Builder
- Enclosing class:
- Openapiv2
public static interface Openapiv2.ContactOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetEmail()
The email address of the contact person/organization.com.google.protobuf.ByteString
The email address of the contact person/organization.getName()
The identifying name of the contact person/organization.com.google.protobuf.ByteString
The identifying name of the contact person/organization.getUrl()
The URL pointing to the contact information.com.google.protobuf.ByteString
The URL pointing to the contact information.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getName
String getName()The identifying name of the contact person/organization.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()The identifying name of the contact person/organization.
string name = 1;
- Returns:
- The bytes for name.
-
getUrl
String getUrl()The URL pointing to the contact information. MUST be in the format of a URL.
string url = 2;
- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()The URL pointing to the contact information. MUST be in the format of a URL.
string url = 2;
- Returns:
- The bytes for url.
-
getEmail
String getEmail()The email address of the contact person/organization. MUST be in the format of an email address.
string email = 3;
- Returns:
- The email.
-
getEmailBytes
com.google.protobuf.ByteString getEmailBytes()The email address of the contact person/organization. MUST be in the format of an email address.
string email = 3;
- Returns:
- The bytes for email.
-