You've already forked dart-core-sdk
Latest generation
This commit is contained in:
135
lib/site.pb.dart
135
lib/site.pb.dart
@@ -4534,141 +4534,6 @@ class InitBookerProfileResponse extends $pb.GeneratedMessage {
|
||||
void clearSiteID() => $_clearField(2);
|
||||
}
|
||||
|
||||
/// CheckAppointmentEditable
|
||||
class CheckAppointmentEditableRequest extends $pb.GeneratedMessage {
|
||||
factory CheckAppointmentEditableRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
$core.String? appointmentID,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (appointmentID != null) result.appointmentID = appointmentID;
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
CheckAppointmentEditableRequest._();
|
||||
|
||||
factory CheckAppointmentEditableRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory CheckAppointmentEditableRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CheckAppointmentEditableRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||
..aOS(3, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CheckAppointmentEditableRequest clone() => CheckAppointmentEditableRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CheckAppointmentEditableRequest copyWith(void Function(CheckAppointmentEditableRequest) updates) => super.copyWith((message) => updates(message as CheckAppointmentEditableRequest)) as CheckAppointmentEditableRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CheckAppointmentEditableRequest create() => CheckAppointmentEditableRequest._();
|
||||
@$core.override
|
||||
CheckAppointmentEditableRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CheckAppointmentEditableRequest> createRepeated() => $pb.PbList<CheckAppointmentEditableRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CheckAppointmentEditableRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CheckAppointmentEditableRequest>(create);
|
||||
static CheckAppointmentEditableRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// Type of appointment : Loading / Unloading / Both
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get appointmentID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set appointmentID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasAppointmentID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearAppointmentID() => $_clearField(2);
|
||||
|
||||
/// actor with which the siteID/project-depositID will be processed
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get actorID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set actorID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasActorID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearActorID() => $_clearField(3);
|
||||
}
|
||||
|
||||
class CheckAppointmentEditableResponse extends $pb.GeneratedMessage {
|
||||
factory CheckAppointmentEditableResponse({
|
||||
$core.bool? isEditable,
|
||||
$core.bool? isForceEditable,
|
||||
}) {
|
||||
final result = create();
|
||||
if (isEditable != null) result.isEditable = isEditable;
|
||||
if (isForceEditable != null) result.isForceEditable = isForceEditable;
|
||||
return result;
|
||||
}
|
||||
|
||||
CheckAppointmentEditableResponse._();
|
||||
|
||||
factory CheckAppointmentEditableResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory CheckAppointmentEditableResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CheckAppointmentEditableResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOB(3, _omitFieldNames ? '' : 'IsEditable', protoName: 'IsEditable')
|
||||
..aOB(4, _omitFieldNames ? '' : 'IsForceEditable', protoName: 'IsForceEditable')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CheckAppointmentEditableResponse clone() => CheckAppointmentEditableResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CheckAppointmentEditableResponse copyWith(void Function(CheckAppointmentEditableResponse) updates) => super.copyWith((message) => updates(message as CheckAppointmentEditableResponse)) as CheckAppointmentEditableResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CheckAppointmentEditableResponse create() => CheckAppointmentEditableResponse._();
|
||||
@$core.override
|
||||
CheckAppointmentEditableResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<CheckAppointmentEditableResponse> createRepeated() => $pb.PbList<CheckAppointmentEditableResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CheckAppointmentEditableResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CheckAppointmentEditableResponse>(create);
|
||||
static CheckAppointmentEditableResponse? _defaultInstance;
|
||||
|
||||
/// ResponseHeader Header = 2;
|
||||
/// bool IsModifiable = 1;
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool get isEditable => $_getBF(0);
|
||||
@$pb.TagNumber(3)
|
||||
set isEditable($core.bool value) => $_setBool(0, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasIsEditable() => $_has(0);
|
||||
@$pb.TagNumber(3)
|
||||
void clearIsEditable() => $_clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool get isForceEditable => $_getBF(1);
|
||||
@$pb.TagNumber(4)
|
||||
set isForceEditable($core.bool value) => $_setBool(1, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasIsForceEditable() => $_has(1);
|
||||
@$pb.TagNumber(4)
|
||||
void clearIsForceEditable() => $_clearField(4);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
Reference in New Issue
Block a user