|
|
|
|
@@ -5090,6 +5090,269 @@ class ActorCustomFieldsUpdatedResponse extends $pb.GeneratedMessage {
|
|
|
|
|
$1.EntityID ensureID() => $_ensure(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ActorInformationUpdatedPayload extends $pb.GeneratedMessage {
|
|
|
|
|
factory ActorInformationUpdatedPayload({
|
|
|
|
|
$core.String? additionalInformation,
|
|
|
|
|
}) {
|
|
|
|
|
final result = create();
|
|
|
|
|
if (additionalInformation != null) result.additionalInformation = additionalInformation;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ActorInformationUpdatedPayload._();
|
|
|
|
|
|
|
|
|
|
factory ActorInformationUpdatedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
|
|
|
factory ActorInformationUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
|
|
|
..aOS(1, _omitFieldNames ? '' : 'AdditionalInformation', protoName: 'AdditionalInformation')
|
|
|
|
|
..hasRequiredFields = false
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedPayload clone() => ActorInformationUpdatedPayload()..mergeFromMessage(this);
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedPayload copyWith(void Function(ActorInformationUpdatedPayload) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedPayload)) as ActorInformationUpdatedPayload;
|
|
|
|
|
|
|
|
|
|
@$core.override
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedPayload create() => ActorInformationUpdatedPayload._();
|
|
|
|
|
@$core.override
|
|
|
|
|
ActorInformationUpdatedPayload createEmptyInstance() => create();
|
|
|
|
|
static $pb.PbList<ActorInformationUpdatedPayload> createRepeated() => $pb.PbList<ActorInformationUpdatedPayload>();
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedPayload>(create);
|
|
|
|
|
static ActorInformationUpdatedPayload? _defaultInstance;
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.String get additionalInformation => $_getSZ(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
set additionalInformation($core.String value) => $_setString(0, value);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.bool hasAdditionalInformation() => $_has(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
void clearAdditionalInformation() => $_clearField(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Event message
|
|
|
|
|
class ActorInformationUpdatedEvent extends $pb.GeneratedMessage {
|
|
|
|
|
factory ActorInformationUpdatedEvent({
|
|
|
|
|
$1.EventHeader? header,
|
|
|
|
|
$1.EntityID? iD,
|
|
|
|
|
ActorInformationUpdatedPayload? payload,
|
|
|
|
|
}) {
|
|
|
|
|
final result = create();
|
|
|
|
|
if (header != null) result.header = header;
|
|
|
|
|
if (iD != null) result.iD = iD;
|
|
|
|
|
if (payload != null) result.payload = payload;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ActorInformationUpdatedEvent._();
|
|
|
|
|
|
|
|
|
|
factory ActorInformationUpdatedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
|
|
|
factory ActorInformationUpdatedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
|
|
|
..aOM<$1.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.EventHeader.create)
|
|
|
|
|
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
|
|
|
|
..aOM<ActorInformationUpdatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorInformationUpdatedPayload.create)
|
|
|
|
|
..hasRequiredFields = false
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedEvent clone() => ActorInformationUpdatedEvent()..mergeFromMessage(this);
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedEvent copyWith(void Function(ActorInformationUpdatedEvent) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedEvent)) as ActorInformationUpdatedEvent;
|
|
|
|
|
|
|
|
|
|
@$core.override
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedEvent create() => ActorInformationUpdatedEvent._();
|
|
|
|
|
@$core.override
|
|
|
|
|
ActorInformationUpdatedEvent createEmptyInstance() => create();
|
|
|
|
|
static $pb.PbList<ActorInformationUpdatedEvent> createRepeated() => $pb.PbList<ActorInformationUpdatedEvent>();
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedEvent>(create);
|
|
|
|
|
static ActorInformationUpdatedEvent? _defaultInstance;
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.EventHeader get header => $_getN(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
set header($1.EventHeader value) => $_setField(1, value);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.bool hasHeader() => $_has(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
void clearHeader() => $_clearField(1);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.EventHeader ensureHeader() => $_ensure(0);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$1.EntityID get iD => $_getN(1);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
set iD($1.EntityID value) => $_setField(2, value);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$core.bool hasID() => $_has(1);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
void clearID() => $_clearField(2);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$1.EntityID ensureID() => $_ensure(1);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
ActorInformationUpdatedPayload get payload => $_getN(2);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
set payload(ActorInformationUpdatedPayload value) => $_setField(3, value);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
$core.bool hasPayload() => $_has(2);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
void clearPayload() => $_clearField(3);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
ActorInformationUpdatedPayload ensurePayload() => $_ensure(2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// API Request
|
|
|
|
|
class ActorInformationUpdatedRequest extends $pb.GeneratedMessage {
|
|
|
|
|
factory ActorInformationUpdatedRequest({
|
|
|
|
|
$1.RequestProjectHeader? header,
|
|
|
|
|
$1.EntityID? iD,
|
|
|
|
|
ActorInformationUpdatedPayload? payload,
|
|
|
|
|
}) {
|
|
|
|
|
final result = create();
|
|
|
|
|
if (header != null) result.header = header;
|
|
|
|
|
if (iD != null) result.iD = iD;
|
|
|
|
|
if (payload != null) result.payload = payload;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ActorInformationUpdatedRequest._();
|
|
|
|
|
|
|
|
|
|
factory ActorInformationUpdatedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
|
|
|
factory ActorInformationUpdatedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
|
|
|
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
|
|
|
|
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
|
|
|
|
..aOM<ActorInformationUpdatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorInformationUpdatedPayload.create)
|
|
|
|
|
..hasRequiredFields = false
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedRequest clone() => ActorInformationUpdatedRequest()..mergeFromMessage(this);
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedRequest copyWith(void Function(ActorInformationUpdatedRequest) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedRequest)) as ActorInformationUpdatedRequest;
|
|
|
|
|
|
|
|
|
|
@$core.override
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedRequest create() => ActorInformationUpdatedRequest._();
|
|
|
|
|
@$core.override
|
|
|
|
|
ActorInformationUpdatedRequest createEmptyInstance() => create();
|
|
|
|
|
static $pb.PbList<ActorInformationUpdatedRequest> createRepeated() => $pb.PbList<ActorInformationUpdatedRequest>();
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedRequest>(create);
|
|
|
|
|
static ActorInformationUpdatedRequest? _defaultInstance;
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.RequestProjectHeader get header => $_getN(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.bool hasHeader() => $_has(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
void clearHeader() => $_clearField(1);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$1.EntityID get iD => $_getN(1);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
set iD($1.EntityID value) => $_setField(2, value);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$core.bool hasID() => $_has(1);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
void clearID() => $_clearField(2);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$1.EntityID ensureID() => $_ensure(1);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
ActorInformationUpdatedPayload get payload => $_getN(2);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
set payload(ActorInformationUpdatedPayload value) => $_setField(3, value);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
$core.bool hasPayload() => $_has(2);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
void clearPayload() => $_clearField(3);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
ActorInformationUpdatedPayload ensurePayload() => $_ensure(2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// API Response
|
|
|
|
|
class ActorInformationUpdatedResponse extends $pb.GeneratedMessage {
|
|
|
|
|
factory ActorInformationUpdatedResponse({
|
|
|
|
|
$1.ResponseHeader? header,
|
|
|
|
|
$1.EntityID? iD,
|
|
|
|
|
}) {
|
|
|
|
|
final result = create();
|
|
|
|
|
if (header != null) result.header = header;
|
|
|
|
|
if (iD != null) result.iD = iD;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ActorInformationUpdatedResponse._();
|
|
|
|
|
|
|
|
|
|
factory ActorInformationUpdatedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
|
|
|
factory ActorInformationUpdatedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
|
|
|
..aOM<$1.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create)
|
|
|
|
|
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
|
|
|
|
..hasRequiredFields = false
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedResponse clone() => ActorInformationUpdatedResponse()..mergeFromMessage(this);
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
ActorInformationUpdatedResponse copyWith(void Function(ActorInformationUpdatedResponse) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedResponse)) as ActorInformationUpdatedResponse;
|
|
|
|
|
|
|
|
|
|
@$core.override
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedResponse create() => ActorInformationUpdatedResponse._();
|
|
|
|
|
@$core.override
|
|
|
|
|
ActorInformationUpdatedResponse createEmptyInstance() => create();
|
|
|
|
|
static $pb.PbList<ActorInformationUpdatedResponse> createRepeated() => $pb.PbList<ActorInformationUpdatedResponse>();
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static ActorInformationUpdatedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedResponse>(create);
|
|
|
|
|
static ActorInformationUpdatedResponse? _defaultInstance;
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.ResponseHeader get header => $_getN(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
set header($1.ResponseHeader value) => $_setField(1, value);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.bool hasHeader() => $_has(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
void clearHeader() => $_clearField(1);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.ResponseHeader ensureHeader() => $_ensure(0);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$1.EntityID get iD => $_getN(1);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
set iD($1.EntityID value) => $_setField(2, value);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$core.bool hasID() => $_has(1);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
void clearID() => $_clearField(2);
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
|
|
$1.EntityID ensureID() => $_ensure(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
|
|
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
|
|
|
|
|