v1AudioNativePost method

Creates Audio Native Enabled Project. @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

Future<chopper.Response<AudioNativeCreateProjectResponseModel>>
v1AudioNativePost({
  String? xiApiKey,
  required BodyCreatesAudioNativeEnabledProjectV1AudioNativePost body,
}) {
  generatedMapping.putIfAbsent(
    AudioNativeCreateProjectResponseModel,
    () => AudioNativeCreateProjectResponseModel.fromJsonFactory,
  );

  return _v1AudioNativePost(xiApiKey: xiApiKey?.toString(), body: body);
}