Package proto.rpc.v1
Interface Auth.CredentialsOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Auth.Credentials
,Auth.Credentials.Builder
- Enclosing class:
- Auth
public static interface Auth.CredentialsOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionpayload is an opaque string used that are of the given type above.com.google.protobuf.ByteString
payload is an opaque string used that are of the given type above.getType()
type is the type of credentials being used.com.google.protobuf.ByteString
type is the type of credentials being used.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
getType
String getType()type is the type of credentials being used.
string type = 1 [json_name = "type"];
- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()type is the type of credentials being used.
string type = 1 [json_name = "type"];
- Returns:
- The bytes for type.
-
getPayload
String getPayload()payload is an opaque string used that are of the given type above.
string payload = 2 [json_name = "payload"];
- Returns:
- The payload.
-
getPayloadBytes
com.google.protobuf.ByteString getPayloadBytes()payload is an opaque string used that are of the given type above.
string payload = 2 [json_name = "payload"];
- Returns:
- The bytes for payload.
-