Interface PublisherModel.DocumentationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PublisherModel.Documentation
,PublisherModel.Documentation.Builder
- Enclosing class:
- PublisherModel
public static interface PublisherModel.DocumentationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContent()
Required.com.google.protobuf.ByteString
getContentBytes()
Required.String
getTitle()
Required.com.google.protobuf.ByteString
getTitleBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTitle
String getTitle()
Required. E.g., OVERVIEW, USE CASES, DOCUMENTATION, SDK & SAMPLES, JAVA, NODE.JS, etc..
string title = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The title.
-
getTitleBytes
com.google.protobuf.ByteString getTitleBytes()
Required. E.g., OVERVIEW, USE CASES, DOCUMENTATION, SDK & SAMPLES, JAVA, NODE.JS, etc..
string title = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for title.
-
getContent
String getContent()
Required. Content of this piece of document (in Markdown format).
string content = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The content.
-
getContentBytes
com.google.protobuf.ByteString getContentBytes()
Required. Content of this piece of document (in Markdown format).
string content = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for content.
-
-