Class ConversationsDeclineSharedInviteRequest
- java.lang.Object
-
- com.slack.api.methods.request.conversations.ConversationsDeclineSharedInviteRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class ConversationsDeclineSharedInviteRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConversationsDeclineSharedInviteRequest.ConversationsDeclineSharedInviteRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConversationsDeclineSharedInviteRequest.ConversationsDeclineSharedInviteRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetInviteId()ID of the Slack Connect invite to decline.StringgetTargetTeam()The team or enterprise id of the other party involved in the invitation you are decliningStringgetToken()Authentication token bearing required scopes.inthashCode()voidsetInviteId(String inviteId)ID of the Slack Connect invite to decline.voidsetTargetTeam(String targetTeam)The team or enterprise id of the other party involved in the invitation you are decliningvoidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static ConversationsDeclineSharedInviteRequest.ConversationsDeclineSharedInviteRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes. Tokens should be passed as an HTTP Authorization header or alternatively, as a POST parameter.- Specified by:
getTokenin interfaceSlackApiRequest
-
getInviteId
public String getInviteId()
ID of the Slack Connect invite to decline. Subscribe to the shared_channel_invite_accepted event to receive IDs of Slack Connect channel invites that have been accepted and are awaiting approval.
-
getTargetTeam
public String getTargetTeam()
The team or enterprise id of the other party involved in the invitation you are declining
-
setToken
public void setToken(String token)
Authentication token bearing required scopes. Tokens should be passed as an HTTP Authorization header or alternatively, as a POST parameter.
-
setInviteId
public void setInviteId(String inviteId)
ID of the Slack Connect invite to decline. Subscribe to the shared_channel_invite_accepted event to receive IDs of Slack Connect channel invites that have been accepted and are awaiting approval.
-
setTargetTeam
public void setTargetTeam(String targetTeam)
The team or enterprise id of the other party involved in the invitation you are declining
-
canEqual
protected boolean canEqual(Object other)
-
-