You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -326,7 +326,13 @@ class AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
}
|
||||
|
||||
class AppointmentQueryOptions extends $pb.GeneratedMessage {
|
||||
factory AppointmentQueryOptions() => create();
|
||||
factory AppointmentQueryOptions({
|
||||
$core.Iterable<$core.String>? only,
|
||||
}) {
|
||||
final result = create();
|
||||
if (only != null) result.only.addAll(only);
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentQueryOptions._();
|
||||
|
||||
@@ -334,6 +340,7 @@ class AppointmentQueryOptions extends $pb.GeneratedMessage {
|
||||
factory AppointmentQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pPS(1, _omitFieldNames ? '' : 'Only', protoName: 'Only')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -353,6 +360,9 @@ class AppointmentQueryOptions extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentQueryOptions>(create);
|
||||
static AppointmentQueryOptions? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$core.String> get only => $_getList(0);
|
||||
}
|
||||
|
||||
class AppointmentByMatchQuery extends $pb.GeneratedMessage {
|
||||
|
||||
Reference in New Issue
Block a user