v1ProjectsPodcastCreatePost method
Future<Response<PodcastProjectResponseModel> >
v1ProjectsPodcastCreatePost({
- String? xiApiKey,
- required BodyCreatePodcastV1ProjectsPodcastCreatePost? body,
Create Podcast @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.
Implementation
@deprecated
Future<chopper.Response<PodcastProjectResponseModel>>
v1ProjectsPodcastCreatePost({
String? xiApiKey,
required BodyCreatePodcastV1ProjectsPodcastCreatePost? body,
}) {
generatedMapping.putIfAbsent(
PodcastProjectResponseModel,
() => PodcastProjectResponseModel.fromJsonFactory,
);
return _v1ProjectsPodcastCreatePost(
xiApiKey: xiApiKey?.toString(),
body: body,
);
}