github.com/twilio/twilio-go@v1.20.1/rest/api/v2010/model_api_v2010_connect_app.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Api
     8   * This is the public Twilio REST API.
     9   *
    10   * NOTE: This class is auto generated by OpenAPI Generator.
    11   * https://openapi-generator.tech
    12   * Do not edit the class manually.
    13   */
    14  
    15  package openapi
    16  
    17  // ApiV2010ConnectApp struct for ApiV2010ConnectApp
    18  type ApiV2010ConnectApp struct {
    19  	// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the ConnectApp resource.
    20  	AccountSid *string `json:"account_sid,omitempty"`
    21  	// The URL we redirect the user to after we authenticate the user and obtain authorization to access the Connect App.
    22  	AuthorizeRedirectUrl *string `json:"authorize_redirect_url,omitempty"`
    23  	// The company name set for the Connect App.
    24  	CompanyName *string `json:"company_name,omitempty"`
    25  	// The HTTP method we use to call `deauthorize_callback_url`.
    26  	DeauthorizeCallbackMethod *string `json:"deauthorize_callback_method,omitempty"`
    27  	// The URL we call using the `deauthorize_callback_method` to de-authorize the Connect App.
    28  	DeauthorizeCallbackUrl *string `json:"deauthorize_callback_url,omitempty"`
    29  	// The description of the Connect App.
    30  	Description *string `json:"description,omitempty"`
    31  	// The string that you assigned to describe the resource.
    32  	FriendlyName *string `json:"friendly_name,omitempty"`
    33  	// The public URL where users can obtain more information about this Connect App.
    34  	HomepageUrl *string `json:"homepage_url,omitempty"`
    35  	// The set of permissions that your ConnectApp requests.
    36  	Permissions *[]string `json:"permissions,omitempty"`
    37  	// The unique string that that we created to identify the ConnectApp resource.
    38  	Sid *string `json:"sid,omitempty"`
    39  	// The URI of the resource, relative to `https://api.twilio.com`.
    40  	Uri *string `json:"uri,omitempty"`
    41  }