
com.twilio.jwt.accesstoken.ConversationsGrant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
package com.twilio.jwt.accesstoken;
/**
* Grant used to access Twilio Conversations.
*
* @deprecated use {@link VideoGrant} instead.
*
* For more information see:
*
* https://www.twilio.com/docs/api/rest/access-tokens
*
*
*/
@Deprecated
public class ConversationsGrant implements Grant {
private String configurationProfileSid;
public String getConfigurationProfileSid() {
return configurationProfileSid;
}
public ConversationsGrant setConfigurationProfileSid(String configurationProfileSid) {
this.configurationProfileSid = configurationProfileSid;
return this;
}
public String getGrantKey() {
return "rtc";
}
public Object getPayload() {
return new Payload(this);
}
@SuppressWarnings("checkstyle:membername")
public class Payload {
public final String configuration_profile_sid;
/**
* Create the grant payload.
*
* @param grant Conversations grant
*/
public Payload(ConversationsGrant grant) {
this.configuration_profile_sid = grant.configurationProfileSid;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy