Class CallsUpdateRequest

java.lang.Object
com.slack.api.methods.request.calls.CallsUpdateRequest
All Implemented Interfaces:
SlackApiRequest

public class CallsUpdateRequest
extends java.lang.Object
implements SlackApiRequest
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  CallsUpdateRequest.CallsUpdateRequestBuilder  
  • Method Summary

    Modifier and Type Method Description
    static CallsUpdateRequest.CallsUpdateRequestBuilder builder()  
    protected boolean canEqual​(java.lang.Object other)  
    boolean equals​(java.lang.Object o)  
    java.lang.String getDesktopAppJoinUrl()
    When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.
    java.lang.String getId()
    id returned by the calls.add method.
    java.lang.String getJoinUrl()
    The URL required for a client to join the Call.
    java.lang.String getTitle()
    The name of the Call.
    java.lang.String getToken()
    Authentication token bearing required scopes.
    int hashCode()  
    void setDesktopAppJoinUrl​(java.lang.String desktopAppJoinUrl)
    When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.
    void setId​(java.lang.String id)
    id returned by the calls.add method.
    void setJoinUrl​(java.lang.String joinUrl)
    The URL required for a client to join the Call.
    void setTitle​(java.lang.String title)
    The name of the Call.
    void setToken​(java.lang.String token)
    Authentication token bearing required scopes.
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Method Details

    • builder

    • getToken

      public java.lang.String getToken()
      Authentication token bearing required scopes.
      Specified by:
      getToken in interface SlackApiRequest
    • getId

      public java.lang.String getId()
      id returned by the calls.add method.
    • getDesktopAppJoinUrl

      public java.lang.String getDesktopAppJoinUrl()
      When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.
    • getJoinUrl

      public java.lang.String getJoinUrl()
      The URL required for a client to join the Call.
    • getTitle

      public java.lang.String getTitle()
      The name of the Call.
    • setToken

      public void setToken​(java.lang.String token)
      Authentication token bearing required scopes.
    • setId

      public void setId​(java.lang.String id)
      id returned by the calls.add method.
    • setDesktopAppJoinUrl

      public void setDesktopAppJoinUrl​(java.lang.String desktopAppJoinUrl)
      When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.
    • setJoinUrl

      public void setJoinUrl​(java.lang.String joinUrl)
      The URL required for a client to join the Call.
    • setTitle

      public void setTitle​(java.lang.String title)
      The name of the Call.
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • canEqual

      protected boolean canEqual​(java.lang.Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object