PutRepositoryTriggersOutput.fromJson constructor

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

Implementation

factory PutRepositoryTriggersOutput.fromJson(Map<String, dynamic> json) {
  return PutRepositoryTriggersOutput(
    configurationId: json['configurationId'] as String?,
  );
}