You've already forked dart-core-sdk
Latest generation
This commit is contained in:
256
lib/site.pb.dart
256
lib/site.pb.dart
@@ -3167,6 +3167,7 @@ class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
|
||||
$pb.PbList<SegmentationsSetting> get segmentationsSettings => $_getList(1);
|
||||
}
|
||||
|
||||
@$core.Deprecated('This message is deprecated')
|
||||
class ListSitesAuthorizedForBookingRequest extends $pb.GeneratedMessage {
|
||||
factory ListSitesAuthorizedForBookingRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
@@ -3215,6 +3216,7 @@ class ListSitesAuthorizedForBookingRequest extends $pb.GeneratedMessage {
|
||||
$3.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
}
|
||||
|
||||
@$core.Deprecated('This message is deprecated')
|
||||
class ListSitesAuthorizedForBookingResponse extends $pb.GeneratedMessage {
|
||||
factory ListSitesAuthorizedForBookingResponse({
|
||||
$core.Iterable<ListOfSitesPerOrganisation>? listOfSitesPerOrganisations,
|
||||
@@ -3255,6 +3257,260 @@ class ListSitesAuthorizedForBookingResponse extends $pb.GeneratedMessage {
|
||||
$pb.PbList<ListOfSitesPerOrganisation> get listOfSitesPerOrganisations => $_getList(0);
|
||||
}
|
||||
|
||||
class SiteDescription extends $pb.GeneratedMessage {
|
||||
factory SiteDescription({
|
||||
$core.String? siteID,
|
||||
$core.String? siteName,
|
||||
}) {
|
||||
final result = create();
|
||||
if (siteID != null) result.siteID = siteID;
|
||||
if (siteName != null) result.siteName = siteName;
|
||||
return result;
|
||||
}
|
||||
|
||||
SiteDescription._();
|
||||
|
||||
factory SiteDescription.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory SiteDescription.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteDescription', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SiteDescription clone() => SiteDescription()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SiteDescription copyWith(void Function(SiteDescription) updates) => super.copyWith((message) => updates(message as SiteDescription)) as SiteDescription;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SiteDescription create() => SiteDescription._();
|
||||
@$core.override
|
||||
SiteDescription createEmptyInstance() => create();
|
||||
static $pb.PbList<SiteDescription> createRepeated() => $pb.PbList<SiteDescription>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SiteDescription getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SiteDescription>(create);
|
||||
static SiteDescription? _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);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get siteName => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set siteName($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasSiteName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearSiteName() => $_clearField(2);
|
||||
}
|
||||
|
||||
class ListAllowedSitesRequest extends $pb.GeneratedMessage {
|
||||
factory ListAllowedSitesRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
return result;
|
||||
}
|
||||
|
||||
ListAllowedSitesRequest._();
|
||||
|
||||
factory ListAllowedSitesRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ListAllowedSitesRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAllowedSitesRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ListAllowedSitesRequest clone() => ListAllowedSitesRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ListAllowedSitesRequest copyWith(void Function(ListAllowedSitesRequest) updates) => super.copyWith((message) => updates(message as ListAllowedSitesRequest)) as ListAllowedSitesRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAllowedSitesRequest create() => ListAllowedSitesRequest._();
|
||||
@$core.override
|
||||
ListAllowedSitesRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListAllowedSitesRequest> createRepeated() => $pb.PbList<ListAllowedSitesRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAllowedSitesRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAllowedSitesRequest>(create);
|
||||
static ListAllowedSitesRequest? _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);
|
||||
}
|
||||
|
||||
class ListAllowedSitesResponse extends $pb.GeneratedMessage {
|
||||
factory ListAllowedSitesResponse({
|
||||
$core.Iterable<SiteDescription>? sitesAllowed,
|
||||
}) {
|
||||
final result = create();
|
||||
if (sitesAllowed != null) result.sitesAllowed.addAll(sitesAllowed);
|
||||
return result;
|
||||
}
|
||||
|
||||
ListAllowedSitesResponse._();
|
||||
|
||||
factory ListAllowedSitesResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ListAllowedSitesResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAllowedSitesResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<SiteDescription>(1, _omitFieldNames ? '' : 'SitesAllowed', $pb.PbFieldType.PM, protoName: 'SitesAllowed', subBuilder: SiteDescription.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ListAllowedSitesResponse clone() => ListAllowedSitesResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ListAllowedSitesResponse copyWith(void Function(ListAllowedSitesResponse) updates) => super.copyWith((message) => updates(message as ListAllowedSitesResponse)) as ListAllowedSitesResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAllowedSitesResponse create() => ListAllowedSitesResponse._();
|
||||
@$core.override
|
||||
ListAllowedSitesResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ListAllowedSitesResponse> createRepeated() => $pb.PbList<ListAllowedSitesResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAllowedSitesResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAllowedSitesResponse>(create);
|
||||
static ListAllowedSitesResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<SiteDescription> get sitesAllowed => $_getList(0);
|
||||
}
|
||||
|
||||
class GetActorAuthorisationRequest extends $pb.GeneratedMessage {
|
||||
factory GetActorAuthorisationRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
$core.String? siteID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (siteID != null) result.siteID = siteID;
|
||||
return result;
|
||||
}
|
||||
|
||||
GetActorAuthorisationRequest._();
|
||||
|
||||
factory GetActorAuthorisationRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetActorAuthorisationRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetActorAuthorisationRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetActorAuthorisationRequest clone() => GetActorAuthorisationRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetActorAuthorisationRequest copyWith(void Function(GetActorAuthorisationRequest) updates) => super.copyWith((message) => updates(message as GetActorAuthorisationRequest)) as GetActorAuthorisationRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetActorAuthorisationRequest create() => GetActorAuthorisationRequest._();
|
||||
@$core.override
|
||||
GetActorAuthorisationRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetActorAuthorisationRequest> createRepeated() => $pb.PbList<GetActorAuthorisationRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetActorAuthorisationRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetActorAuthorisationRequest>(create);
|
||||
static GetActorAuthorisationRequest? _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);
|
||||
|
||||
@$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);
|
||||
}
|
||||
|
||||
class GetActorAuthorisationResponse extends $pb.GeneratedMessage {
|
||||
factory GetActorAuthorisationResponse({
|
||||
$2.ProjectAuthorisation? authorisation,
|
||||
}) {
|
||||
final result = create();
|
||||
if (authorisation != null) result.authorisation = authorisation;
|
||||
return result;
|
||||
}
|
||||
|
||||
GetActorAuthorisationResponse._();
|
||||
|
||||
factory GetActorAuthorisationResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetActorAuthorisationResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetActorAuthorisationResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$2.ProjectAuthorisation>(1, _omitFieldNames ? '' : 'Authorisation', protoName: 'Authorisation', subBuilder: $2.ProjectAuthorisation.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetActorAuthorisationResponse clone() => GetActorAuthorisationResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetActorAuthorisationResponse copyWith(void Function(GetActorAuthorisationResponse) updates) => super.copyWith((message) => updates(message as GetActorAuthorisationResponse)) as GetActorAuthorisationResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetActorAuthorisationResponse create() => GetActorAuthorisationResponse._();
|
||||
@$core.override
|
||||
GetActorAuthorisationResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<GetActorAuthorisationResponse> createRepeated() => $pb.PbList<GetActorAuthorisationResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetActorAuthorisationResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetActorAuthorisationResponse>(create);
|
||||
static GetActorAuthorisationResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$2.ProjectAuthorisation get authorisation => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set authorisation($2.ProjectAuthorisation value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAuthorisation() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAuthorisation() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$2.ProjectAuthorisation ensureAuthorisation() => $_ensure(0);
|
||||
}
|
||||
|
||||
class GetBasicSettingsRequest extends $pb.GeneratedMessage {
|
||||
factory GetBasicSettingsRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
|
||||
@@ -136,10 +136,19 @@ class SiteServiceClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$getBasicSettings, request, options: options);
|
||||
}
|
||||
|
||||
@$core.Deprecated('This method is deprecated')
|
||||
$grpc.ResponseFuture<$0.ListSitesAuthorizedForBookingResponse> listSitesAuthorizedForBooking($0.ListSitesAuthorizedForBookingRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$listSitesAuthorizedForBooking, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ListAllowedSitesResponse> listAllowedSites($0.ListAllowedSitesRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$listAllowedSites, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.GetActorAuthorisationResponse> getActorAuthorisation($0.GetActorAuthorisationRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$getActorAuthorisation, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.GetBookingSegmentationsResponse> getBookingSegmentations($0.GetBookingSegmentationsRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$getBookingSegmentations, request, options: options);
|
||||
}
|
||||
@@ -267,6 +276,14 @@ class SiteServiceClient extends $grpc.Client {
|
||||
'/api.SiteService/ListSitesAuthorizedForBooking',
|
||||
($0.ListSitesAuthorizedForBookingRequest value) => value.writeToBuffer(),
|
||||
$0.ListSitesAuthorizedForBookingResponse.fromBuffer);
|
||||
static final _$listAllowedSites = $grpc.ClientMethod<$0.ListAllowedSitesRequest, $0.ListAllowedSitesResponse>(
|
||||
'/api.SiteService/ListAllowedSites',
|
||||
($0.ListAllowedSitesRequest value) => value.writeToBuffer(),
|
||||
$0.ListAllowedSitesResponse.fromBuffer);
|
||||
static final _$getActorAuthorisation = $grpc.ClientMethod<$0.GetActorAuthorisationRequest, $0.GetActorAuthorisationResponse>(
|
||||
'/api.SiteService/GetActorAuthorisation',
|
||||
($0.GetActorAuthorisationRequest value) => value.writeToBuffer(),
|
||||
$0.GetActorAuthorisationResponse.fromBuffer);
|
||||
static final _$getBookingSegmentations = $grpc.ClientMethod<$0.GetBookingSegmentationsRequest, $0.GetBookingSegmentationsResponse>(
|
||||
'/api.SiteService/GetBookingSegmentations',
|
||||
($0.GetBookingSegmentationsRequest value) => value.writeToBuffer(),
|
||||
@@ -470,6 +487,20 @@ abstract class SiteServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ListSitesAuthorizedForBookingRequest.fromBuffer(value),
|
||||
($0.ListSitesAuthorizedForBookingResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ListAllowedSitesRequest, $0.ListAllowedSitesResponse>(
|
||||
'ListAllowedSites',
|
||||
listAllowedSites_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ListAllowedSitesRequest.fromBuffer(value),
|
||||
($0.ListAllowedSitesResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.GetActorAuthorisationRequest, $0.GetActorAuthorisationResponse>(
|
||||
'GetActorAuthorisation',
|
||||
getActorAuthorisation_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.GetActorAuthorisationRequest.fromBuffer(value),
|
||||
($0.GetActorAuthorisationResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.GetBookingSegmentationsRequest, $0.GetBookingSegmentationsResponse>(
|
||||
'GetBookingSegmentations',
|
||||
getBookingSegmentations_Pre,
|
||||
@@ -665,6 +696,18 @@ abstract class SiteServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.ListSitesAuthorizedForBookingResponse> listSitesAuthorizedForBooking($grpc.ServiceCall call, $0.ListSitesAuthorizedForBookingRequest request);
|
||||
|
||||
$async.Future<$0.ListAllowedSitesResponse> listAllowedSites_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAllowedSitesRequest> $request) async {
|
||||
return listAllowedSites($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ListAllowedSitesResponse> listAllowedSites($grpc.ServiceCall call, $0.ListAllowedSitesRequest request);
|
||||
|
||||
$async.Future<$0.GetActorAuthorisationResponse> getActorAuthorisation_Pre($grpc.ServiceCall $call, $async.Future<$0.GetActorAuthorisationRequest> $request) async {
|
||||
return getActorAuthorisation($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.GetActorAuthorisationResponse> getActorAuthorisation($grpc.ServiceCall call, $0.GetActorAuthorisationRequest request);
|
||||
|
||||
$async.Future<$0.GetBookingSegmentationsResponse> getBookingSegmentations_Pre($grpc.ServiceCall $call, $async.Future<$0.GetBookingSegmentationsRequest> $request) async {
|
||||
return getBookingSegmentations($call, await $request);
|
||||
}
|
||||
|
||||
@@ -858,14 +858,14 @@ const ListSitesAuthorizedForBookingRequest$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
'7': {'3': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListSitesAuthorizedForBookingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listSitesAuthorizedForBookingRequestDescriptor = $convert.base64Decode(
|
||||
'CiRMaXN0U2l0ZXNBdXRob3JpemVkRm9yQm9va2luZ1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMh'
|
||||
'kuYXBpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhl'
|
||||
'YWRlcg==');
|
||||
'kuYXBpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOhAYAZJBCwoJ0gEG'
|
||||
'SGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use listSitesAuthorizedForBookingResponseDescriptor instead')
|
||||
const ListSitesAuthorizedForBookingResponse$json = {
|
||||
@@ -873,13 +873,84 @@ const ListSitesAuthorizedForBookingResponse$json = {
|
||||
'2': [
|
||||
{'1': 'ListOfSitesPerOrganisations', '3': 1, '4': 3, '5': 11, '6': '.api.ListOfSitesPerOrganisation', '10': 'ListOfSitesPerOrganisations'},
|
||||
],
|
||||
'7': {'3': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListSitesAuthorizedForBookingResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listSitesAuthorizedForBookingResponseDescriptor = $convert.base64Decode(
|
||||
'CiVMaXN0U2l0ZXNBdXRob3JpemVkRm9yQm9va2luZ1Jlc3BvbnNlEmEKG0xpc3RPZlNpdGVzUG'
|
||||
'VyT3JnYW5pc2F0aW9ucxgBIAMoCzIfLmFwaS5MaXN0T2ZTaXRlc1Blck9yZ2FuaXNhdGlvblIb'
|
||||
'TGlzdE9mU2l0ZXNQZXJPcmdhbmlzYXRpb25z');
|
||||
'TGlzdE9mU2l0ZXNQZXJPcmdhbmlzYXRpb25zOgIYAQ==');
|
||||
|
||||
@$core.Deprecated('Use siteDescriptionDescriptor instead')
|
||||
const SiteDescription$json = {
|
||||
'1': 'SiteDescription',
|
||||
'2': [
|
||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '10': 'SiteID'},
|
||||
{'1': 'SiteName', '3': 2, '4': 1, '5': 9, '10': 'SiteName'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `SiteDescription`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List siteDescriptionDescriptor = $convert.base64Decode(
|
||||
'Cg9TaXRlRGVzY3JpcHRpb24SFgoGU2l0ZUlEGAEgASgJUgZTaXRlSUQSGgoIU2l0ZU5hbWUYAi'
|
||||
'ABKAlSCFNpdGVOYW1l');
|
||||
|
||||
@$core.Deprecated('Use listAllowedSitesRequestDescriptor instead')
|
||||
const ListAllowedSitesRequest$json = {
|
||||
'1': 'ListAllowedSitesRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAllowedSitesRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAllowedSitesRequestDescriptor = $convert.base64Decode(
|
||||
'ChdMaXN0QWxsb3dlZFNpdGVzUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
||||
'Byb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use listAllowedSitesResponseDescriptor instead')
|
||||
const ListAllowedSitesResponse$json = {
|
||||
'1': 'ListAllowedSitesResponse',
|
||||
'2': [
|
||||
{'1': 'SitesAllowed', '3': 1, '4': 3, '5': 11, '6': '.api.SiteDescription', '10': 'SitesAllowed'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAllowedSitesResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAllowedSitesResponseDescriptor = $convert.base64Decode(
|
||||
'ChhMaXN0QWxsb3dlZFNpdGVzUmVzcG9uc2USOAoMU2l0ZXNBbGxvd2VkGAEgAygLMhQuYXBpLl'
|
||||
'NpdGVEZXNjcmlwdGlvblIMU2l0ZXNBbGxvd2Vk');
|
||||
|
||||
@$core.Deprecated('Use getActorAuthorisationRequestDescriptor instead')
|
||||
const GetActorAuthorisationRequest$json = {
|
||||
'1': 'GetActorAuthorisationRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'SiteID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetActorAuthorisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getActorAuthorisationRequestDescriptor = $convert.base64Decode(
|
||||
'ChxHZXRBY3RvckF1dGhvcmlzYXRpb25SZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZX'
|
||||
'F1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIfCgZTaXRlSUQYAiABKAlCB/pC'
|
||||
'BHICEAFSBlNpdGVJRDoXkkEUChLSAQZIZWFkZXLSAQZTaXRlSUQ=');
|
||||
|
||||
@$core.Deprecated('Use getActorAuthorisationResponseDescriptor instead')
|
||||
const GetActorAuthorisationResponse$json = {
|
||||
'1': 'GetActorAuthorisationResponse',
|
||||
'2': [
|
||||
{'1': 'Authorisation', '3': 1, '4': 1, '5': 11, '6': '.api.ProjectAuthorisation', '10': 'Authorisation'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetActorAuthorisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getActorAuthorisationResponseDescriptor = $convert.base64Decode(
|
||||
'Ch1HZXRBY3RvckF1dGhvcmlzYXRpb25SZXNwb25zZRI/Cg1BdXRob3Jpc2F0aW9uGAEgASgLMh'
|
||||
'kuYXBpLlByb2plY3RBdXRob3Jpc2F0aW9uUg1BdXRob3Jpc2F0aW9u');
|
||||
|
||||
@$core.Deprecated('Use getBasicSettingsRequestDescriptor instead')
|
||||
const GetBasicSettingsRequest$json = {
|
||||
|
||||
Reference in New Issue
Block a user