OrganizationS3LogsConfigurationResult.fromJson constructor

OrganizationS3LogsConfigurationResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory OrganizationS3LogsConfigurationResult.fromJson(
    Map<String, dynamic> json) {
  return OrganizationS3LogsConfigurationResult(
    autoEnable: json['autoEnable'] as bool,
  );
}