@@ -35,7 +35,6 @@ import type { UpdateConferenceMember } from '../models';
3535import type { VoiceApiError } from '../models' ;
3636/**
3737 * ConferencesApi - axios parameter creator
38- * @export
3938 */
4039export const ConferencesApiAxiosParamCreator = function ( configuration ?: Configuration ) {
4140 return {
@@ -477,7 +476,6 @@ export const ConferencesApiAxiosParamCreator = function (configuration?: Configu
477476
478477/**
479478 * ConferencesApi - functional programming interface
480- * @export
481479 */
482480export const ConferencesApiFp = function ( configuration ?: Configuration ) {
483481 const localVarAxiosParamCreator = ConferencesApiAxiosParamCreator ( configuration )
@@ -624,7 +622,6 @@ export const ConferencesApiFp = function(configuration?: Configuration) {
624622
625623/**
626624 * ConferencesApi - factory interface
627- * @export
628625 */
629626export const ConferencesApiFactory = function ( configuration ?: Configuration , basePath ?: string , axios ?: AxiosInstance ) {
630627 const localVarFp = ConferencesApiFp ( configuration )
@@ -744,9 +741,6 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
744741
745742/**
746743 * ConferencesApi - object-oriented interface
747- * @export
748- * @class ConferencesApi
749- * @extends {BaseAPI }
750744 */
751745export class ConferencesApi extends BaseAPI {
752746 /**
@@ -757,7 +751,6 @@ export class ConferencesApi extends BaseAPI {
757751 * @param {string } recordingId Programmable Voice API Recording ID.
758752 * @param {* } [options] Override http request option.
759753 * @throws {RequiredError }
760- * @memberof ConferencesApi
761754 */
762755 public downloadConferenceRecording ( accountId : string , conferenceId : string , recordingId : string , options ?: RawAxiosRequestConfig ) {
763756 return ConferencesApiFp ( this . configuration ) . downloadConferenceRecording ( accountId , conferenceId , recordingId , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -770,7 +763,6 @@ export class ConferencesApi extends BaseAPI {
770763 * @param {string } conferenceId Programmable Voice API Conference ID.
771764 * @param {* } [options] Override http request option.
772765 * @throws {RequiredError }
773- * @memberof ConferencesApi
774766 */
775767 public getConference ( accountId : string , conferenceId : string , options ?: RawAxiosRequestConfig ) {
776768 return ConferencesApiFp ( this . configuration ) . getConference ( accountId , conferenceId , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -784,7 +776,6 @@ export class ConferencesApi extends BaseAPI {
784776 * @param {string } memberId Programmable Voice API Conference Member ID.
785777 * @param {* } [options] Override http request option.
786778 * @throws {RequiredError }
787- * @memberof ConferencesApi
788779 */
789780 public getConferenceMember ( accountId : string , conferenceId : string , memberId : string , options ?: RawAxiosRequestConfig ) {
790781 return ConferencesApiFp ( this . configuration ) . getConferenceMember ( accountId , conferenceId , memberId , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -798,7 +789,6 @@ export class ConferencesApi extends BaseAPI {
798789 * @param {string } recordingId Programmable Voice API Recording ID.
799790 * @param {* } [options] Override http request option.
800791 * @throws {RequiredError }
801- * @memberof ConferencesApi
802792 */
803793 public getConferenceRecording ( accountId : string , conferenceId : string , recordingId : string , options ?: RawAxiosRequestConfig ) {
804794 return ConferencesApiFp ( this . configuration ) . getConferenceRecording ( accountId , conferenceId , recordingId , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -811,7 +801,6 @@ export class ConferencesApi extends BaseAPI {
811801 * @param {string } conferenceId Programmable Voice API Conference ID.
812802 * @param {* } [options] Override http request option.
813803 * @throws {RequiredError }
814- * @memberof ConferencesApi
815804 */
816805 public listConferenceRecordings ( accountId : string , conferenceId : string , options ?: RawAxiosRequestConfig ) {
817806 return ConferencesApiFp ( this . configuration ) . listConferenceRecordings ( accountId , conferenceId , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -828,7 +817,6 @@ export class ConferencesApi extends BaseAPI {
828817 * @param {string } [pageToken] Not intended for explicit use. To use pagination, follow the links in the `Link` header of the response, as indicated in the endpoint description.
829818 * @param {* } [options] Override http request option.
830819 * @throws {RequiredError }
831- * @memberof ConferencesApi
832820 */
833821 public listConferences ( accountId : string , name ?: string , minCreatedTime ?: string , maxCreatedTime ?: string , pageSize ?: number , pageToken ?: string , options ?: RawAxiosRequestConfig ) {
834822 return ConferencesApiFp ( this . configuration ) . listConferences ( accountId , name , minCreatedTime , maxCreatedTime , pageSize , pageToken , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -842,7 +830,6 @@ export class ConferencesApi extends BaseAPI {
842830 * @param {UpdateConference } updateConference
843831 * @param {* } [options] Override http request option.
844832 * @throws {RequiredError }
845- * @memberof ConferencesApi
846833 */
847834 public updateConference ( accountId : string , conferenceId : string , updateConference : UpdateConference , options ?: RawAxiosRequestConfig ) {
848835 return ConferencesApiFp ( this . configuration ) . updateConference ( accountId , conferenceId , updateConference , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -856,7 +843,6 @@ export class ConferencesApi extends BaseAPI {
856843 * @param {string } body
857844 * @param {* } [options] Override http request option.
858845 * @throws {RequiredError }
859- * @memberof ConferencesApi
860846 */
861847 public updateConferenceBxml ( accountId : string , conferenceId : string , body : string , options ?: RawAxiosRequestConfig ) {
862848 return ConferencesApiFp ( this . configuration ) . updateConferenceBxml ( accountId , conferenceId , body , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
@@ -871,7 +857,6 @@ export class ConferencesApi extends BaseAPI {
871857 * @param {UpdateConferenceMember } updateConferenceMember
872858 * @param {* } [options] Override http request option.
873859 * @throws {RequiredError }
874- * @memberof ConferencesApi
875860 */
876861 public updateConferenceMember ( accountId : string , conferenceId : string , memberId : string , updateConferenceMember : UpdateConferenceMember , options ?: RawAxiosRequestConfig ) {
877862 return ConferencesApiFp ( this . configuration ) . updateConferenceMember ( accountId , conferenceId , memberId , updateConferenceMember , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
0 commit comments