You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -5,9 +5,10 @@
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
@@ -26,24 +27,18 @@ class RestrictionLink extends $pb.GeneratedMessage {
|
||||
$core.String? targetID,
|
||||
$54.Restriction? restriction,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (projectID != null) {
|
||||
$result.projectID = projectID;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (targetID != null) {
|
||||
$result.targetID = targetID;
|
||||
}
|
||||
if (restriction != null) {
|
||||
$result.restriction = restriction;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (targetID != null) result.targetID = targetID;
|
||||
if (restriction != null) result.restriction = restriction;
|
||||
return result;
|
||||
}
|
||||
RestrictionLink._() : super();
|
||||
factory RestrictionLink.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory RestrictionLink.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
RestrictionLink._();
|
||||
|
||||
factory RestrictionLink.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory RestrictionLink.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RestrictionLink', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
@@ -58,10 +53,12 @@ class RestrictionLink extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
RestrictionLink copyWith(void Function(RestrictionLink) updates) => super.copyWith((message) => updates(message as RestrictionLink)) as RestrictionLink;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RestrictionLink create() => RestrictionLink._();
|
||||
@$core.override
|
||||
RestrictionLink createEmptyInstance() => create();
|
||||
static $pb.PbList<RestrictionLink> createRepeated() => $pb.PbList<RestrictionLink>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -71,7 +68,7 @@ class RestrictionLink extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get projectID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set projectID($core.String v) { $_setString(0, v); }
|
||||
set projectID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasProjectID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -80,7 +77,7 @@ class RestrictionLink extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -89,7 +86,7 @@ class RestrictionLink extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get targetID => $_getSZ(2);
|
||||
@$pb.TagNumber(4)
|
||||
set targetID($core.String v) { $_setString(2, v); }
|
||||
set targetID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasTargetID() => $_has(2);
|
||||
@$pb.TagNumber(4)
|
||||
@@ -98,7 +95,7 @@ class RestrictionLink extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(6)
|
||||
$54.Restriction get restriction => $_getN(3);
|
||||
@$pb.TagNumber(6)
|
||||
set restriction($54.Restriction v) { $_setField(6, v); }
|
||||
set restriction($54.Restriction value) => $_setField(6, value);
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasRestriction() => $_has(3);
|
||||
@$pb.TagNumber(6)
|
||||
@@ -114,21 +111,17 @@ class CreateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
$core.String? restrictionID,
|
||||
$core.String? targetID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (targetID != null) {
|
||||
$result.targetID = targetID;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (targetID != null) result.targetID = targetID;
|
||||
return result;
|
||||
}
|
||||
CreateRestrictionLinkRequest._() : super();
|
||||
factory CreateRestrictionLinkRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateRestrictionLinkRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
CreateRestrictionLinkRequest._();
|
||||
|
||||
factory CreateRestrictionLinkRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory CreateRestrictionLinkRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateRestrictionLinkRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -142,10 +135,12 @@ class CreateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CreateRestrictionLinkRequest copyWith(void Function(CreateRestrictionLinkRequest) updates) => super.copyWith((message) => updates(message as CreateRestrictionLinkRequest)) as CreateRestrictionLinkRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateRestrictionLinkRequest create() => CreateRestrictionLinkRequest._();
|
||||
@$core.override
|
||||
CreateRestrictionLinkRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateRestrictionLinkRequest> createRepeated() => $pb.PbList<CreateRestrictionLinkRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -155,7 +150,7 @@ class CreateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -166,7 +161,7 @@ class CreateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -175,7 +170,7 @@ class CreateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get targetID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set targetID($core.String v) { $_setString(2, v); }
|
||||
set targetID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTargetID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -186,15 +181,15 @@ class CreateRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
factory CreateRestrictionLinkResponse({
|
||||
RestrictionLink? restrictionLink,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (restrictionLink != null) {
|
||||
$result.restrictionLink = restrictionLink;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (restrictionLink != null) result.restrictionLink = restrictionLink;
|
||||
return result;
|
||||
}
|
||||
CreateRestrictionLinkResponse._() : super();
|
||||
factory CreateRestrictionLinkResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateRestrictionLinkResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
CreateRestrictionLinkResponse._();
|
||||
|
||||
factory CreateRestrictionLinkResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory CreateRestrictionLinkResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateRestrictionLinkResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<RestrictionLink>(1, _omitFieldNames ? '' : 'RestrictionLink', protoName: 'RestrictionLink', subBuilder: RestrictionLink.create)
|
||||
@@ -206,10 +201,12 @@ class CreateRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CreateRestrictionLinkResponse copyWith(void Function(CreateRestrictionLinkResponse) updates) => super.copyWith((message) => updates(message as CreateRestrictionLinkResponse)) as CreateRestrictionLinkResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateRestrictionLinkResponse create() => CreateRestrictionLinkResponse._();
|
||||
@$core.override
|
||||
CreateRestrictionLinkResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateRestrictionLinkResponse> createRepeated() => $pb.PbList<CreateRestrictionLinkResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -219,7 +216,7 @@ class CreateRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
RestrictionLink get restrictionLink => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set restrictionLink(RestrictionLink v) { $_setField(1, v); }
|
||||
set restrictionLink(RestrictionLink value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRestrictionLink() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -235,21 +232,17 @@ class UpdateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
$core.String? restrictionID,
|
||||
$core.String? targetID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (targetID != null) {
|
||||
$result.targetID = targetID;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (targetID != null) result.targetID = targetID;
|
||||
return result;
|
||||
}
|
||||
UpdateRestrictionLinkRequest._() : super();
|
||||
factory UpdateRestrictionLinkRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UpdateRestrictionLinkRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
UpdateRestrictionLinkRequest._();
|
||||
|
||||
factory UpdateRestrictionLinkRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory UpdateRestrictionLinkRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateRestrictionLinkRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -263,10 +256,12 @@ class UpdateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateRestrictionLinkRequest copyWith(void Function(UpdateRestrictionLinkRequest) updates) => super.copyWith((message) => updates(message as UpdateRestrictionLinkRequest)) as UpdateRestrictionLinkRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateRestrictionLinkRequest create() => UpdateRestrictionLinkRequest._();
|
||||
@$core.override
|
||||
UpdateRestrictionLinkRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateRestrictionLinkRequest> createRepeated() => $pb.PbList<UpdateRestrictionLinkRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -276,7 +271,7 @@ class UpdateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -287,7 +282,7 @@ class UpdateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -296,7 +291,7 @@ class UpdateRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get targetID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set targetID($core.String v) { $_setString(2, v); }
|
||||
set targetID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTargetID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -307,15 +302,15 @@ class UpdateRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
factory UpdateRestrictionLinkResponse({
|
||||
RestrictionLink? restrictionLink,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (restrictionLink != null) {
|
||||
$result.restrictionLink = restrictionLink;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (restrictionLink != null) result.restrictionLink = restrictionLink;
|
||||
return result;
|
||||
}
|
||||
UpdateRestrictionLinkResponse._() : super();
|
||||
factory UpdateRestrictionLinkResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UpdateRestrictionLinkResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
UpdateRestrictionLinkResponse._();
|
||||
|
||||
factory UpdateRestrictionLinkResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory UpdateRestrictionLinkResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateRestrictionLinkResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<RestrictionLink>(1, _omitFieldNames ? '' : 'RestrictionLink', protoName: 'RestrictionLink', subBuilder: RestrictionLink.create)
|
||||
@@ -327,10 +322,12 @@ class UpdateRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateRestrictionLinkResponse copyWith(void Function(UpdateRestrictionLinkResponse) updates) => super.copyWith((message) => updates(message as UpdateRestrictionLinkResponse)) as UpdateRestrictionLinkResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateRestrictionLinkResponse create() => UpdateRestrictionLinkResponse._();
|
||||
@$core.override
|
||||
UpdateRestrictionLinkResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateRestrictionLinkResponse> createRepeated() => $pb.PbList<UpdateRestrictionLinkResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -340,7 +337,7 @@ class UpdateRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
RestrictionLink get restrictionLink => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set restrictionLink(RestrictionLink v) { $_setField(1, v); }
|
||||
set restrictionLink(RestrictionLink value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRestrictionLink() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -356,21 +353,17 @@ class DeleteRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
$core.String? restrictionID,
|
||||
$core.String? targetID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (targetID != null) {
|
||||
$result.targetID = targetID;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (targetID != null) result.targetID = targetID;
|
||||
return result;
|
||||
}
|
||||
DeleteRestrictionLinkRequest._() : super();
|
||||
factory DeleteRestrictionLinkRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteRestrictionLinkRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
DeleteRestrictionLinkRequest._();
|
||||
|
||||
factory DeleteRestrictionLinkRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory DeleteRestrictionLinkRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteRestrictionLinkRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -384,10 +377,12 @@ class DeleteRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
DeleteRestrictionLinkRequest copyWith(void Function(DeleteRestrictionLinkRequest) updates) => super.copyWith((message) => updates(message as DeleteRestrictionLinkRequest)) as DeleteRestrictionLinkRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteRestrictionLinkRequest create() => DeleteRestrictionLinkRequest._();
|
||||
@$core.override
|
||||
DeleteRestrictionLinkRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteRestrictionLinkRequest> createRepeated() => $pb.PbList<DeleteRestrictionLinkRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -397,7 +392,7 @@ class DeleteRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -408,7 +403,7 @@ class DeleteRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -417,7 +412,7 @@ class DeleteRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get targetID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set targetID($core.String v) { $_setString(2, v); }
|
||||
set targetID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTargetID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -426,9 +421,11 @@ class DeleteRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
|
||||
class DeleteRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
factory DeleteRestrictionLinkResponse() => create();
|
||||
DeleteRestrictionLinkResponse._() : super();
|
||||
factory DeleteRestrictionLinkResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteRestrictionLinkResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
DeleteRestrictionLinkResponse._();
|
||||
|
||||
factory DeleteRestrictionLinkResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory DeleteRestrictionLinkResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteRestrictionLinkResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
@@ -439,10 +436,12 @@ class DeleteRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
DeleteRestrictionLinkResponse copyWith(void Function(DeleteRestrictionLinkResponse) updates) => super.copyWith((message) => updates(message as DeleteRestrictionLinkResponse)) as DeleteRestrictionLinkResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteRestrictionLinkResponse create() => DeleteRestrictionLinkResponse._();
|
||||
@$core.override
|
||||
DeleteRestrictionLinkResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteRestrictionLinkResponse> createRepeated() => $pb.PbList<DeleteRestrictionLinkResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -457,21 +456,17 @@ class GetRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
$core.String? restrictionID,
|
||||
$core.String? targetID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (targetID != null) {
|
||||
$result.targetID = targetID;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (targetID != null) result.targetID = targetID;
|
||||
return result;
|
||||
}
|
||||
GetRestrictionLinkRequest._() : super();
|
||||
factory GetRestrictionLinkRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetRestrictionLinkRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
GetRestrictionLinkRequest._();
|
||||
|
||||
factory GetRestrictionLinkRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetRestrictionLinkRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetRestrictionLinkRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -485,10 +480,12 @@ class GetRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetRestrictionLinkRequest copyWith(void Function(GetRestrictionLinkRequest) updates) => super.copyWith((message) => updates(message as GetRestrictionLinkRequest)) as GetRestrictionLinkRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetRestrictionLinkRequest create() => GetRestrictionLinkRequest._();
|
||||
@$core.override
|
||||
GetRestrictionLinkRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetRestrictionLinkRequest> createRepeated() => $pb.PbList<GetRestrictionLinkRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -498,7 +495,7 @@ class GetRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -509,7 +506,7 @@ class GetRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -518,7 +515,7 @@ class GetRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get targetID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set targetID($core.String v) { $_setString(2, v); }
|
||||
set targetID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTargetID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -529,15 +526,15 @@ class GetRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
factory GetRestrictionLinkResponse({
|
||||
RestrictionLink? restrictionLink,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (restrictionLink != null) {
|
||||
$result.restrictionLink = restrictionLink;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (restrictionLink != null) result.restrictionLink = restrictionLink;
|
||||
return result;
|
||||
}
|
||||
GetRestrictionLinkResponse._() : super();
|
||||
factory GetRestrictionLinkResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetRestrictionLinkResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
GetRestrictionLinkResponse._();
|
||||
|
||||
factory GetRestrictionLinkResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetRestrictionLinkResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetRestrictionLinkResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<RestrictionLink>(1, _omitFieldNames ? '' : 'RestrictionLink', protoName: 'RestrictionLink', subBuilder: RestrictionLink.create)
|
||||
@@ -549,10 +546,12 @@ class GetRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetRestrictionLinkResponse copyWith(void Function(GetRestrictionLinkResponse) updates) => super.copyWith((message) => updates(message as GetRestrictionLinkResponse)) as GetRestrictionLinkResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetRestrictionLinkResponse create() => GetRestrictionLinkResponse._();
|
||||
@$core.override
|
||||
GetRestrictionLinkResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<GetRestrictionLinkResponse> createRepeated() => $pb.PbList<GetRestrictionLinkResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -562,7 +561,7 @@ class GetRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
RestrictionLink get restrictionLink => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set restrictionLink(RestrictionLink v) { $_setField(1, v); }
|
||||
set restrictionLink(RestrictionLink value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRestrictionLink() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -578,21 +577,17 @@ class ListRestrictionLinksRequest extends $pb.GeneratedMessage {
|
||||
$core.String? restrictionID,
|
||||
$core.String? targetID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (targetID != null) {
|
||||
$result.targetID = targetID;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (targetID != null) result.targetID = targetID;
|
||||
return result;
|
||||
}
|
||||
ListRestrictionLinksRequest._() : super();
|
||||
factory ListRestrictionLinksRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListRestrictionLinksRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
ListRestrictionLinksRequest._();
|
||||
|
||||
factory ListRestrictionLinksRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ListRestrictionLinksRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListRestrictionLinksRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -606,10 +601,12 @@ class ListRestrictionLinksRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ListRestrictionLinksRequest copyWith(void Function(ListRestrictionLinksRequest) updates) => super.copyWith((message) => updates(message as ListRestrictionLinksRequest)) as ListRestrictionLinksRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListRestrictionLinksRequest create() => ListRestrictionLinksRequest._();
|
||||
@$core.override
|
||||
ListRestrictionLinksRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListRestrictionLinksRequest> createRepeated() => $pb.PbList<ListRestrictionLinksRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -619,7 +616,7 @@ class ListRestrictionLinksRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -630,7 +627,7 @@ class ListRestrictionLinksRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -639,7 +636,7 @@ class ListRestrictionLinksRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get targetID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set targetID($core.String v) { $_setString(2, v); }
|
||||
set targetID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTargetID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -650,15 +647,15 @@ class ListRestrictionLinksResponse extends $pb.GeneratedMessage {
|
||||
factory ListRestrictionLinksResponse({
|
||||
$core.Iterable<RestrictionLink>? restrictionLinks,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (restrictionLinks != null) {
|
||||
$result.restrictionLinks.addAll(restrictionLinks);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (restrictionLinks != null) result.restrictionLinks.addAll(restrictionLinks);
|
||||
return result;
|
||||
}
|
||||
ListRestrictionLinksResponse._() : super();
|
||||
factory ListRestrictionLinksResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListRestrictionLinksResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
ListRestrictionLinksResponse._();
|
||||
|
||||
factory ListRestrictionLinksResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ListRestrictionLinksResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListRestrictionLinksResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<RestrictionLink>(1, _omitFieldNames ? '' : 'RestrictionLinks', $pb.PbFieldType.PM, protoName: 'RestrictionLinks', subBuilder: RestrictionLink.create)
|
||||
@@ -670,10 +667,12 @@ class ListRestrictionLinksResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ListRestrictionLinksResponse copyWith(void Function(ListRestrictionLinksResponse) updates) => super.copyWith((message) => updates(message as ListRestrictionLinksResponse)) as ListRestrictionLinksResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListRestrictionLinksResponse create() => ListRestrictionLinksResponse._();
|
||||
@$core.override
|
||||
ListRestrictionLinksResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ListRestrictionLinksResponse> createRepeated() => $pb.PbList<ListRestrictionLinksResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -692,24 +691,18 @@ class SetUserActorsRequest extends $pb.GeneratedMessage {
|
||||
$core.String? userID,
|
||||
$core.Iterable<$core.String>? userActorIDs,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (restrictionID != null) {
|
||||
$result.restrictionID = restrictionID;
|
||||
}
|
||||
if (userID != null) {
|
||||
$result.userID = userID;
|
||||
}
|
||||
if (userActorIDs != null) {
|
||||
$result.userActorIDs.addAll(userActorIDs);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (restrictionID != null) result.restrictionID = restrictionID;
|
||||
if (userID != null) result.userID = userID;
|
||||
if (userActorIDs != null) result.userActorIDs.addAll(userActorIDs);
|
||||
return result;
|
||||
}
|
||||
SetUserActorsRequest._() : super();
|
||||
factory SetUserActorsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory SetUserActorsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
SetUserActorsRequest._();
|
||||
|
||||
factory SetUserActorsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory SetUserActorsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SetUserActorsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -724,10 +717,12 @@ class SetUserActorsRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SetUserActorsRequest copyWith(void Function(SetUserActorsRequest) updates) => super.copyWith((message) => updates(message as SetUserActorsRequest)) as SetUserActorsRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SetUserActorsRequest create() => SetUserActorsRequest._();
|
||||
@$core.override
|
||||
SetUserActorsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<SetUserActorsRequest> createRepeated() => $pb.PbList<SetUserActorsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -737,7 +732,7 @@ class SetUserActorsRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -748,7 +743,7 @@ class SetUserActorsRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get restrictionID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set restrictionID($core.String v) { $_setString(1, v); }
|
||||
set restrictionID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasRestrictionID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -757,7 +752,7 @@ class SetUserActorsRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get userID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set userID($core.String v) { $_setString(2, v); }
|
||||
set userID($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasUserID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -769,9 +764,11 @@ class SetUserActorsRequest extends $pb.GeneratedMessage {
|
||||
|
||||
class SetUserActorsResponse extends $pb.GeneratedMessage {
|
||||
factory SetUserActorsResponse() => create();
|
||||
SetUserActorsResponse._() : super();
|
||||
factory SetUserActorsResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory SetUserActorsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
SetUserActorsResponse._();
|
||||
|
||||
factory SetUserActorsResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory SetUserActorsResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SetUserActorsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
@@ -782,10 +779,12 @@ class SetUserActorsResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SetUserActorsResponse copyWith(void Function(SetUserActorsResponse) updates) => super.copyWith((message) => updates(message as SetUserActorsResponse)) as SetUserActorsResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SetUserActorsResponse create() => SetUserActorsResponse._();
|
||||
@$core.override
|
||||
SetUserActorsResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<SetUserActorsResponse> createRepeated() => $pb.PbList<SetUserActorsResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -798,15 +797,15 @@ class DeleteForProjectRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteForProjectRestrictionLinkRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
return result;
|
||||
}
|
||||
DeleteForProjectRestrictionLinkRequest._() : super();
|
||||
factory DeleteForProjectRestrictionLinkRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteForProjectRestrictionLinkRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
DeleteForProjectRestrictionLinkRequest._();
|
||||
|
||||
factory DeleteForProjectRestrictionLinkRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory DeleteForProjectRestrictionLinkRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteForProjectRestrictionLinkRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
@@ -818,10 +817,12 @@ class DeleteForProjectRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
DeleteForProjectRestrictionLinkRequest copyWith(void Function(DeleteForProjectRestrictionLinkRequest) updates) => super.copyWith((message) => updates(message as DeleteForProjectRestrictionLinkRequest)) as DeleteForProjectRestrictionLinkRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteForProjectRestrictionLinkRequest create() => DeleteForProjectRestrictionLinkRequest._();
|
||||
@$core.override
|
||||
DeleteForProjectRestrictionLinkRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteForProjectRestrictionLinkRequest> createRepeated() => $pb.PbList<DeleteForProjectRestrictionLinkRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -831,7 +832,7 @@ class DeleteForProjectRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -842,9 +843,11 @@ class DeleteForProjectRestrictionLinkRequest extends $pb.GeneratedMessage {
|
||||
|
||||
class DeleteForProjectRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
factory DeleteForProjectRestrictionLinkResponse() => create();
|
||||
DeleteForProjectRestrictionLinkResponse._() : super();
|
||||
factory DeleteForProjectRestrictionLinkResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteForProjectRestrictionLinkResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
DeleteForProjectRestrictionLinkResponse._();
|
||||
|
||||
factory DeleteForProjectRestrictionLinkResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory DeleteForProjectRestrictionLinkResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteForProjectRestrictionLinkResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
@@ -855,10 +858,12 @@ class DeleteForProjectRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
DeleteForProjectRestrictionLinkResponse copyWith(void Function(DeleteForProjectRestrictionLinkResponse) updates) => super.copyWith((message) => updates(message as DeleteForProjectRestrictionLinkResponse)) as DeleteForProjectRestrictionLinkResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteForProjectRestrictionLinkResponse create() => DeleteForProjectRestrictionLinkResponse._();
|
||||
@$core.override
|
||||
DeleteForProjectRestrictionLinkResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteForProjectRestrictionLinkResponse> createRepeated() => $pb.PbList<DeleteForProjectRestrictionLinkResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -867,5 +872,5 @@ class DeleteForProjectRestrictionLinkResponse extends $pb.GeneratedMessage {
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
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