All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twilio.auth.ConversationsGrant Maven / Gradle / Ivy

The newest version!
package com.twilio.auth;

/**
 * Grant used to access Twilio Conversations.
 *
 * 

* For more information see: * * https://www.twilio.com/docs/api/rest/access-tokens * *

*/ public class ConversationsGrant implements Grant { public 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