You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
// Generated code. Do not modify.
|
||||
// source: shared.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names, library_prefixes
|
||||
@@ -44,7 +44,7 @@ class ModelDataSetEnum extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ModelDataSetEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ModelDataSetEnum? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ModelDataSetEnum._($core.int v, $core.String n) : super(v, n);
|
||||
const ModelDataSetEnum._(super.v, super.n);
|
||||
}
|
||||
|
||||
class SeverityLevel extends $pb.ProtobufEnum {
|
||||
@@ -65,7 +65,7 @@ class SeverityLevel extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, SeverityLevel> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static SeverityLevel? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const SeverityLevel._($core.int v, $core.String n) : super(v, n);
|
||||
const SeverityLevel._(super.v, super.n);
|
||||
}
|
||||
|
||||
class ResponseStatus extends $pb.ProtobufEnum {
|
||||
@@ -92,7 +92,7 @@ class ResponseStatus extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ResponseStatus> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ResponseStatus? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ResponseStatus._($core.int v, $core.String n) : super(v, n);
|
||||
const ResponseStatus._(super.v, super.n);
|
||||
}
|
||||
|
||||
class WorkflowTypeEnum extends $pb.ProtobufEnum {
|
||||
@@ -157,7 +157,7 @@ class WorkflowTypeEnum extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, WorkflowTypeEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static WorkflowTypeEnum? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const WorkflowTypeEnum._($core.int v, $core.String n) : super(v, n);
|
||||
const WorkflowTypeEnum._(super.v, super.n);
|
||||
}
|
||||
|
||||
class ModuleWorkflowTypeEnum extends $pb.ProtobufEnum {
|
||||
@@ -172,7 +172,7 @@ class ModuleWorkflowTypeEnum extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ModuleWorkflowTypeEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ModuleWorkflowTypeEnum? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ModuleWorkflowTypeEnum._($core.int v, $core.String n) : super(v, n);
|
||||
const ModuleWorkflowTypeEnum._(super.v, super.n);
|
||||
}
|
||||
|
||||
class WorkflowSemaphore extends $pb.ProtobufEnum {
|
||||
@@ -193,7 +193,7 @@ class WorkflowSemaphore extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, WorkflowSemaphore> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static WorkflowSemaphore? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const WorkflowSemaphore._($core.int v, $core.String n) : super(v, n);
|
||||
const WorkflowSemaphore._(super.v, super.n);
|
||||
}
|
||||
|
||||
class SharePolicy extends $pb.ProtobufEnum {
|
||||
@@ -222,11 +222,12 @@ class SharePolicy extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, SharePolicy> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static SharePolicy? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const SharePolicy._($core.int v, $core.String n) : super(v, n);
|
||||
const SharePolicy._(super.v, super.n);
|
||||
}
|
||||
|
||||
class EntityType extends $pb.ProtobufEnum {
|
||||
static const EntityType ENTITY_TYPE_UNKNOWN = EntityType._(0, _omitEnumNames ? '' : 'ENTITY_TYPE_UNKNOWN');
|
||||
/// Trade
|
||||
static const EntityType ENTITY_TYPE_ACTOR = EntityType._(1, _omitEnumNames ? '' : 'ENTITY_TYPE_ACTOR');
|
||||
static const EntityType ENTITY_TYPE_EXECUTIONFLOW = EntityType._(2, _omitEnumNames ? '' : 'ENTITY_TYPE_EXECUTIONFLOW');
|
||||
static const EntityType ENTITY_TYPE_FAMILY = EntityType._(3, _omitEnumNames ? '' : 'ENTITY_TYPE_FAMILY');
|
||||
@@ -237,6 +238,7 @@ class EntityType extends $pb.ProtobufEnum {
|
||||
static const EntityType ENTITY_TYPE_STOCK = EntityType._(8, _omitEnumNames ? '' : 'ENTITY_TYPE_STOCK');
|
||||
static const EntityType ENTITY_TYPE_TRACKING = EntityType._(9, _omitEnumNames ? '' : 'ENTITY_TYPE_TRACKING');
|
||||
static const EntityType ENTITY_TYPE_MOVEMENT = EntityType._(11, _omitEnumNames ? '' : 'ENTITY_TYPE_MOVEMENT');
|
||||
/// Collab
|
||||
static const EntityType ENTITY_TYPE_CLAIM = EntityType._(10, _omitEnumNames ? '' : 'ENTITY_TYPE_CLAIM');
|
||||
|
||||
static const $core.List<EntityType> values = <EntityType> [
|
||||
@@ -257,15 +259,17 @@ class EntityType extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, EntityType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static EntityType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const EntityType._($core.int v, $core.String n) : super(v, n);
|
||||
const EntityType._(super.v, super.n);
|
||||
}
|
||||
|
||||
class ClaimEntityType extends $pb.ProtobufEnum {
|
||||
static const ClaimEntityType CLAIM_ENTITY_TYPE_UNKNOWN = ClaimEntityType._(0, _omitEnumNames ? '' : 'CLAIM_ENTITY_TYPE_UNKNOWN');
|
||||
/// Trade
|
||||
static const ClaimEntityType CLAIM_ENTITY_TYPE_ACTOR = ClaimEntityType._(1, _omitEnumNames ? '' : 'CLAIM_ENTITY_TYPE_ACTOR');
|
||||
static const ClaimEntityType CLAIM_ENTITY_TYPE_EXECUTIONFLOW = ClaimEntityType._(2, _omitEnumNames ? '' : 'CLAIM_ENTITY_TYPE_EXECUTIONFLOW');
|
||||
static const ClaimEntityType CLAIM_ENTITY_TYPE_HANDLINGUNIT = ClaimEntityType._(3, _omitEnumNames ? '' : 'CLAIM_ENTITY_TYPE_HANDLINGUNIT');
|
||||
static const ClaimEntityType CLAIM_ENTITY_TYPE_ORDER = ClaimEntityType._(4, _omitEnumNames ? '' : 'CLAIM_ENTITY_TYPE_ORDER');
|
||||
/// CLAIM_ENTITY_TYPE_TRACKING = 5;
|
||||
static const ClaimEntityType CLAIM_ENTITY_TYPE_MOVEMENT = ClaimEntityType._(6, _omitEnumNames ? '' : 'CLAIM_ENTITY_TYPE_MOVEMENT');
|
||||
|
||||
static const $core.List<ClaimEntityType> values = <ClaimEntityType> [
|
||||
@@ -280,7 +284,7 @@ class ClaimEntityType extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ClaimEntityType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ClaimEntityType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ClaimEntityType._($core.int v, $core.String n) : super(v, n);
|
||||
const ClaimEntityType._(super.v, super.n);
|
||||
}
|
||||
|
||||
class ClaimSector extends $pb.ProtobufEnum {
|
||||
@@ -303,7 +307,7 @@ class ClaimSector extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ClaimSector> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ClaimSector? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ClaimSector._($core.int v, $core.String n) : super(v, n);
|
||||
const ClaimSector._(super.v, super.n);
|
||||
}
|
||||
|
||||
/// Enum representing different statuses of a claim.
|
||||
@@ -340,7 +344,7 @@ class ClaimStatus extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ClaimStatus> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ClaimStatus? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ClaimStatus._($core.int v, $core.String n) : super(v, n);
|
||||
const ClaimStatus._(super.v, super.n);
|
||||
}
|
||||
|
||||
/// Enum representing the criticality levels of a claim.
|
||||
@@ -363,7 +367,7 @@ class ClaimCriticality extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ClaimCriticality> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ClaimCriticality? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ClaimCriticality._($core.int v, $core.String n) : super(v, n);
|
||||
const ClaimCriticality._(super.v, super.n);
|
||||
}
|
||||
|
||||
class EntityAdminPlatform extends $pb.ProtobufEnum {
|
||||
@@ -382,7 +386,7 @@ class EntityAdminPlatform extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, EntityAdminPlatform> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static EntityAdminPlatform? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const EntityAdminPlatform._($core.int v, $core.String n) : super(v, n);
|
||||
const EntityAdminPlatform._(super.v, super.n);
|
||||
}
|
||||
|
||||
class RecoverType extends $pb.ProtobufEnum {
|
||||
@@ -399,7 +403,7 @@ class RecoverType extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, RecoverType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static RecoverType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const RecoverType._($core.int v, $core.String n) : super(v, n);
|
||||
const RecoverType._(super.v, super.n);
|
||||
}
|
||||
|
||||
/// Enum representing the different types of resources which can be created in the platform.
|
||||
@@ -427,7 +431,7 @@ class ResourceType extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ResourceType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ResourceType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ResourceType._($core.int v, $core.String n) : super(v, n);
|
||||
const ResourceType._(super.v, super.n);
|
||||
}
|
||||
|
||||
class ExtractColumnFormat_type extends $pb.ProtobufEnum {
|
||||
@@ -444,7 +448,7 @@ class ExtractColumnFormat_type extends $pb.ProtobufEnum {
|
||||
static final $core.Map<$core.int, ExtractColumnFormat_type> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ExtractColumnFormat_type? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ExtractColumnFormat_type._($core.int v, $core.String n) : super(v, n);
|
||||
const ExtractColumnFormat_type._(super.v, super.n);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user