Interface Openapiv2.ExternalDocumentationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Openapiv2.ExternalDocumentation,Openapiv2.ExternalDocumentation.Builder
- Enclosing class:
- Openapiv2
public static interface Openapiv2.ExternalDocumentationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()A short description of the target documentation.com.google.protobuf.ByteStringgetDescriptionBytes()A short description of the target documentation.java.lang.StringgetUrl()The URL for the target documentation.com.google.protobuf.ByteStringgetUrlBytes()The URL for the target documentation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDescription
java.lang.String getDescription()
A short description of the target documentation. GFM syntax can be used for rich text representation.
string description = 1;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
A short description of the target documentation. GFM syntax can be used for rich text representation.
string description = 1;- Returns:
- The bytes for description.
-
getUrl
java.lang.String getUrl()
The URL for the target documentation. Value MUST be in the format of a URL.
string url = 2;- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()
The URL for the target documentation. Value MUST be in the format of a URL.
string url = 2;- Returns:
- The bytes for url.
-
-