You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -23,10 +23,12 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
factory AppointmentByIdQuery({
|
||||
$1.QuerySiteHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
AppointmentQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QuerySiteHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<AppointmentQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: AppointmentQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(AppointmentQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class AppointmentByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
AppointmentQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (limitFilter != null) result.limitFilter = limitFilter;
|
||||
if (queryContext != null) result.queryContext = queryContext;
|
||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$1.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
||||
..aOM<AppointmentQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: AppointmentQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
AppointmentQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(AppointmentQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
AppointmentQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,36 @@ class AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class AppointmentQueryOptions extends $pb.GeneratedMessage {
|
||||
factory AppointmentQueryOptions() => create();
|
||||
|
||||
AppointmentQueryOptions._();
|
||||
|
||||
factory AppointmentQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
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)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentQueryOptions clone() => AppointmentQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentQueryOptions copyWith(void Function(AppointmentQueryOptions) updates) => super.copyWith((message) => updates(message as AppointmentQueryOptions)) as AppointmentQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentQueryOptions create() => AppointmentQueryOptions._();
|
||||
@$core.override
|
||||
AppointmentQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentQueryOptions> createRepeated() => $pb.PbList<AppointmentQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentQueryOptions>(create);
|
||||
static AppointmentQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class AppointmentByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory AppointmentByMatchQuery({
|
||||
$1.QuerySiteHeader? header,
|
||||
|
||||
Reference in New Issue
Block a user