You've already forked dart-core-sdk
Latest generation
This commit is contained in:
104
lib/site.pb.dart
104
lib/site.pb.dart
@@ -4296,6 +4296,110 @@ class GetPossibleSegmentationOnSiteForBookingResponse extends $pb.GeneratedMessa
|
||||
$pb.PbList<$2.Segmentation> get segmentationChoices => $_getList(0);
|
||||
}
|
||||
|
||||
class InitBookerProfileRequest extends $pb.GeneratedMessage {
|
||||
factory InitBookerProfileRequest({
|
||||
$core.String? siteID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (siteID != null) result.siteID = siteID;
|
||||
return result;
|
||||
}
|
||||
|
||||
InitBookerProfileRequest._();
|
||||
|
||||
factory InitBookerProfileRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory InitBookerProfileRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'InitBookerProfileRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
InitBookerProfileRequest clone() => InitBookerProfileRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
InitBookerProfileRequest copyWith(void Function(InitBookerProfileRequest) updates) => super.copyWith((message) => updates(message as InitBookerProfileRequest)) as InitBookerProfileRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static InitBookerProfileRequest create() => InitBookerProfileRequest._();
|
||||
@$core.override
|
||||
InitBookerProfileRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<InitBookerProfileRequest> createRepeated() => $pb.PbList<InitBookerProfileRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static InitBookerProfileRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<InitBookerProfileRequest>(create);
|
||||
static InitBookerProfileRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get siteID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set siteID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSiteID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSiteID() => $_clearField(1);
|
||||
}
|
||||
|
||||
class InitBookerProfileResponse extends $pb.GeneratedMessage {
|
||||
factory InitBookerProfileResponse({
|
||||
$core.String? organisationID,
|
||||
$core.String? siteID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (organisationID != null) result.organisationID = organisationID;
|
||||
if (siteID != null) result.siteID = siteID;
|
||||
return result;
|
||||
}
|
||||
|
||||
InitBookerProfileResponse._();
|
||||
|
||||
factory InitBookerProfileResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory InitBookerProfileResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'InitBookerProfileResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
InitBookerProfileResponse clone() => InitBookerProfileResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
InitBookerProfileResponse copyWith(void Function(InitBookerProfileResponse) updates) => super.copyWith((message) => updates(message as InitBookerProfileResponse)) as InitBookerProfileResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static InitBookerProfileResponse create() => InitBookerProfileResponse._();
|
||||
@$core.override
|
||||
InitBookerProfileResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<InitBookerProfileResponse> createRepeated() => $pb.PbList<InitBookerProfileResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static InitBookerProfileResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<InitBookerProfileResponse>(create);
|
||||
static InitBookerProfileResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get organisationID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set organisationID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasOrganisationID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearOrganisationID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get siteID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set siteID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasSiteID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearSiteID() => $_clearField(2);
|
||||
}
|
||||
|
||||
|
||||
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