toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final s3OutputPath = this.s3OutputPath;
  final collectionConfigurations = this.collectionConfigurations;
  final hookParameters = this.hookParameters;
  final localPath = this.localPath;
  return {
    'S3OutputPath': s3OutputPath,
    if (collectionConfigurations != null)
      'CollectionConfigurations': collectionConfigurations,
    if (hookParameters != null) 'HookParameters': hookParameters,
    if (localPath != null) 'LocalPath': localPath,
  };
}