pub struct UpdateConnectAppParams {
pub account_sid: String,
pub sid: String,
pub authorize_redirect_url: Option<String>,
pub company_name: Option<String>,
pub deauthorize_callback_method: Option<String>,
pub deauthorize_callback_url: Option<String>,
pub description: Option<String>,
pub friendly_name: Option<String>,
pub homepage_url: Option<String>,
pub permissions: Option<Vec<ConnectAppEnumPermission>>,
}
Expand description
struct for passing parameters to the method update_connect_app
Fields§
§account_sid: String
The SID of the Account that created the ConnectApp resources to update.
sid: String
The Twilio-provided string that uniquely identifies the ConnectApp resource to update.
The URL to redirect the user to after we authenticate the user and obtain authorization to access the Connect App.
company_name: Option<String>
The company name to set for the Connect App.
The HTTP method to use when calling deauthorize_callback_url
.
The URL to call using the deauthorize_callback_method
to de-authorize the Connect App.
description: Option<String>
A description of the Connect App.
friendly_name: Option<String>
A descriptive string that you create to describe the resource. It can be up to 64 characters long.
homepage_url: Option<String>
A public URL where users can obtain more information about this Connect App.
permissions: Option<Vec<ConnectAppEnumPermission>>
A comma-separated list of the permissions you will request from the users of this ConnectApp. Can include: get-all
and post-all
.
Trait Implementations§
Source§impl Clone for UpdateConnectAppParams
impl Clone for UpdateConnectAppParams
Source§fn clone(&self) -> UpdateConnectAppParams
fn clone(&self) -> UpdateConnectAppParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more