toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final outputName = this.outputName;
  final appManaged = this.appManaged;
  final featureStoreOutput = this.featureStoreOutput;
  final s3Output = this.s3Output;
  return {
    'OutputName': outputName,
    if (appManaged != null) 'AppManaged': appManaged,
    if (featureStoreOutput != null) 'FeatureStoreOutput': featureStoreOutput,
    if (s3Output != null) 'S3Output': s3Output,
  };
}