Class AdminConversationsCreateRequest

java.lang.Object
com.slack.api.methods.request.admin.conversations.AdminConversationsCreateRequest
All Implemented Interfaces:
SlackApiRequest

public class AdminConversationsCreateRequest
extends Object
implements SlackApiRequest
https://api.slack.com/methods/admin.conversations.create
  • Method Details

    • builder

    • getToken

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

      public Boolean getIsPrivate()
      When true, creates a private channel instead of a public channel
    • getName

      public String getName()
      Name of the public or private channel to create.
    • getDescription

      public String getDescription()
      Description of the public or private channel to create.
    • getOrgWide

      public Boolean getOrgWide()
      When true, the channel will be available org-wide. Note: if the channel is not org_wide=true, you must specify a team_id for this channel
    • getTeamId

      public String getTeamId()
      The workspace to create the channel in. Note: this argument is required unless you set org_wide=true.
    • setToken

      public void setToken​(String token)
      Authentication token bearing required scopes.
    • setIsPrivate

      public void setIsPrivate​(Boolean isPrivate)
      When true, creates a private channel instead of a public channel
    • setName

      public void setName​(String name)
      Name of the public or private channel to create.
    • setDescription

      public void setDescription​(String description)
      Description of the public or private channel to create.
    • setOrgWide

      public void setOrgWide​(Boolean orgWide)
      When true, the channel will be available org-wide. Note: if the channel is not org_wide=true, you must specify a team_id for this channel
    • setTeamId

      public void setTeamId​(String teamId)
      The workspace to create the channel in. Note: this argument is required unless you set org_wide=true.
    • equals

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

      protected boolean canEqual​(Object other)
    • hashCode

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

      public String toString()
      Overrides:
      toString in class Object