factory WorkflowExecutionCount.fromJson(Map<String, dynamic> json) { return WorkflowExecutionCount( count: json['count'] as int, truncated: json['truncated'] as bool?, ); }