Package pbx

Interface Model.ClientCredOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder
    All Known Implementing Classes:
    Model.ClientCred, Model.ClientCred.Builder
    Enclosing class:
    Model

    public static interface Model.ClientCredOrBuilder
    extends com.google.protobuf.MessageLiteOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean containsParams​(java.lang.String key)
      Request parameters, such as preferences or country code.
      java.lang.String getMethod()
      Credential type, i.e.
      com.google.protobuf.ByteString getMethodBytes()
      Credential type, i.e.
      java.util.Map<java.lang.String,​com.google.protobuf.ByteString> getParams()
      Deprecated.
      int getParamsCount()
      Request parameters, such as preferences or country code.
      java.util.Map<java.lang.String,​com.google.protobuf.ByteString> getParamsMap()
      Request parameters, such as preferences or country code.
      com.google.protobuf.ByteString getParamsOrDefault​(java.lang.String key, com.google.protobuf.ByteString defaultValue)
      Request parameters, such as preferences or country code.
      com.google.protobuf.ByteString getParamsOrThrow​(java.lang.String key)
      Request parameters, such as preferences or country code.
      java.lang.String getResponse()
      Verification response
      com.google.protobuf.ByteString getResponseBytes()
      Verification response
      java.lang.String getValue()
      Value to verify, i.e.
      com.google.protobuf.ByteString getValueBytes()
      Value to verify, i.e.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        getDefaultInstanceForType, isInitialized
    • Method Detail

      • getMethod

        java.lang.String getMethod()
         Credential type, i.e. `email` or `tel`.
         
        string method = 1 [json_name = "method"];
        Returns:
        The method.
      • getMethodBytes

        com.google.protobuf.ByteString getMethodBytes()
         Credential type, i.e. `email` or `tel`.
         
        string method = 1 [json_name = "method"];
        Returns:
        The bytes for method.
      • getValue

        java.lang.String getValue()
         Value to verify, i.e. `user@example.com` or `+18003287448`
         
        string value = 2 [json_name = "value"];
        Returns:
        The value.
      • getValueBytes

        com.google.protobuf.ByteString getValueBytes()
         Value to verify, i.e. `user@example.com` or `+18003287448`
         
        string value = 2 [json_name = "value"];
        Returns:
        The bytes for value.
      • getResponse

        java.lang.String getResponse()
         Verification response
         
        string response = 3 [json_name = "response"];
        Returns:
        The response.
      • getResponseBytes

        com.google.protobuf.ByteString getResponseBytes()
         Verification response
         
        string response = 3 [json_name = "response"];
        Returns:
        The bytes for response.
      • getParamsCount

        int getParamsCount()
         Request parameters, such as preferences or country code.
         
        map<string, bytes> params = 4 [json_name = "params"];
      • containsParams

        boolean containsParams​(java.lang.String key)
         Request parameters, such as preferences or country code.
         
        map<string, bytes> params = 4 [json_name = "params"];
      • getParams

        @Deprecated
        java.util.Map<java.lang.String,​com.google.protobuf.ByteString> getParams()
        Deprecated.
        Use getParamsMap() instead.
      • getParamsMap

        java.util.Map<java.lang.String,​com.google.protobuf.ByteString> getParamsMap()
         Request parameters, such as preferences or country code.
         
        map<string, bytes> params = 4 [json_name = "params"];
      • getParamsOrDefault

        com.google.protobuf.ByteString getParamsOrDefault​(java.lang.String key,
                                                          com.google.protobuf.ByteString defaultValue)
         Request parameters, such as preferences or country code.
         
        map<string, bytes> params = 4 [json_name = "params"];
      • getParamsOrThrow

        com.google.protobuf.ByteString getParamsOrThrow​(java.lang.String key)
         Request parameters, such as preferences or country code.
         
        map<string, bytes> params = 4 [json_name = "params"];