Package pbx

Interface Model.ServerCredOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getDone()
      Indicator that the credential is validated
      java.lang.String getMethod()
      Credential type, i.e.
      com.google.protobuf.ByteString getMethodBytes()
      Credential type, i.e.
      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.
      • getDone

        boolean getDone()
         Indicator that the credential is validated
         
        bool done = 3 [json_name = "done"];
        Returns:
        The done.