@@ -35,11 +35,11 @@ func Version() {
3535}
3636
3737/* Create Instance of CellsApiService
38- @param appSid string Application SID
39- @param appKey string Application Key
38+ @param clientId string Client Id
39+ @param clientSecret string Client Secret
4040 @param basePath string Base service path. Set "" for default
4141 @return *CellsApiService */
42- func NewCellsApiService(appSid string, appKey string, opts ...string) *CellsApiService {
42+ func NewCellsApiService(clientId string, clientSecret string, opts ...string) *CellsApiService {
4343 var basePath = ""
4444 var version = ""
4545 for i, v := range opts {
@@ -50,7 +50,7 @@ func Version() {
5050 version = v
5151 }
5252 }
53- config := NewConfiguration(appSid, appKey , basePath, version)
53+ config := NewConfiguration(clientId, clientSecret , basePath, version)
5454 client := NewAPIClient(config)
5555 return client.CellsApi
5656}
@@ -22077,8 +22077,8 @@ func (a *CellsApiService) MoveFolder( localVarOptionals *MoveFolderOpts) (*ht
2207722077/*
2207822078CellsApiService Get Access token
2207922079 * @param grantType Grant Type
22080- * @param clientId App SID
22081- * @param clientSecret App Key
22080+ * @param clientId Client Id
22081+ * @param clientSecret Client Secret
2208222082
2208322083@return AccessTokenResponse
2208422084*/
0 commit comments