Package org.openapitools.client.apis
Interface CallTypesApi
-
- All Implemented Interfaces:
public interface CallTypesApi
-
-
Method Summary
Modifier and Type Method Description abstract CreateCallTypeResponsecreateCallType(@Body() CreateCallTypeRequest createCallTypeRequest)Create Call TypeResponses: 201: Successful response
400: Bad request
429: Too many requests
abstract ResponsedeleteCallType(@Path(value = "name") String name)Delete Call TypeResponses: 200: Successful response
400: Bad request
429: Too many requests
abstract GetCallTypeResponsegetCallType(@Path(value = "name") String name)Get Call TypeResponses: 200: Successful response
400: Bad request
429: Too many requests
abstract ListCallTypeResponselistCallTypes()List Call TypeResponses: 200: Successful response
400: Bad request
429: Too many requests
abstract UpdateCallTypeResponseupdateCallType(@Path(value = "name") String name, @Body() UpdateCallTypeRequest updateCallTypeRequest)Update Call TypeResponses: 201: Successful response
400: Bad request
429: Too many requests
-
-
Method Detail
-
createCallType
@POST(value = "/video/calltypes") abstract CreateCallTypeResponse createCallType(@Body() CreateCallTypeRequest createCallTypeRequest)
Create Call Type
Responses:
201: Successful response
400: Bad request
429: Too many requests
-
deleteCallType
@DELETE(value = "/video/calltypes/{name}") abstract Response deleteCallType(@Path(value = "name") String name)Delete Call Type
Responses:
200: Successful response
400: Bad request
429: Too many requests
-
getCallType
@GET(value = "/video/calltypes/{name}") abstract GetCallTypeResponse getCallType(@Path(value = "name") String name)Get Call Type
Responses:
200: Successful response
400: Bad request
429: Too many requests
-
listCallTypes
@GET(value = "/video/calltypes") abstract ListCallTypeResponse listCallTypes()
List Call Type
Responses:
200: Successful response
400: Bad request
429: Too many requests
-
updateCallType
@PUT(value = "/video/calltypes/{name}") abstract UpdateCallTypeResponse updateCallType(@Path(value = "name") String name, @Body() UpdateCallTypeRequest updateCallTypeRequest)Update Call Type
Responses:
201: Successful response
400: Bad request
429: Too many requests
-
-
-