// GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint // ignore_for_file: no_leading_underscores_for_library_prefixes import 'package:built_value/built_value.dart'; import 'package:built_value/serializer.dart'; import 'package:gql_github/serializers.gql.dart' as _i1; part 'issues.var.gql.g.dart'; abstract class GIssuesVars implements Built { GIssuesVars._(); factory GIssuesVars([Function(GIssuesVarsBuilder b) updates]) = _$GIssuesVars; String get owner; String get name; String? get cursor; static Serializer get serializer => _$gIssuesVarsSerializer; Map toJson() => (_i1.serializers.serializeWith( GIssuesVars.serializer, this, ) as Map); static GIssuesVars? fromJson(Map json) => _i1.serializers.deserializeWith( GIssuesVars.serializer, json, ); } abstract class GPullsVars implements Built { GPullsVars._(); factory GPullsVars([Function(GPullsVarsBuilder b) updates]) = _$GPullsVars; String get owner; String get name; String? get cursor; static Serializer get serializer => _$gPullsVarsSerializer; Map toJson() => (_i1.serializers.serializeWith( GPullsVars.serializer, this, ) as Map); static GPullsVars? fromJson(Map json) => _i1.serializers.deserializeWith( GPullsVars.serializer, json, ); }