Files
dart-viz-sdk/lib/viz-dashboard.pb.dart
2026-04-07 12:19:15 +00:00

1922 lines
88 KiB
Dart

// This is a generated file - do not edit.
//
// Generated from viz-dashboard.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// 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;
import 'package:protobuf/protobuf.dart' as $pb;
import 'core/shared.pb.dart' as $1;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
class Dashboard extends $pb.GeneratedMessage {
factory Dashboard({
$core.String? dashboardID,
$core.String? name,
$core.String? content,
$core.String? createUserID,
$core.String? updateUserID,
$core.String? createDate,
$core.String? updateDate,
$core.bool? isPrivate,
$core.int? autoRefresh,
}) {
final result = create();
if (dashboardID != null) result.dashboardID = dashboardID;
if (name != null) result.name = name;
if (content != null) result.content = content;
if (createUserID != null) result.createUserID = createUserID;
if (updateUserID != null) result.updateUserID = updateUserID;
if (createDate != null) result.createDate = createDate;
if (updateDate != null) result.updateDate = updateDate;
if (isPrivate != null) result.isPrivate = isPrivate;
if (autoRefresh != null) result.autoRefresh = autoRefresh;
return result;
}
Dashboard._();
factory Dashboard.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Dashboard.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Dashboard', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..aOS(3, _omitFieldNames ? '' : 'Content', protoName: 'Content')
..aOS(4, _omitFieldNames ? '' : 'CreateUserID', protoName: 'CreateUserID')
..aOS(5, _omitFieldNames ? '' : 'UpdateUserID', protoName: 'UpdateUserID')
..aOS(6, _omitFieldNames ? '' : 'CreateDate', protoName: 'CreateDate')
..aOS(7, _omitFieldNames ? '' : 'UpdateDate', protoName: 'UpdateDate')
..aOB(8, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate')
..a<$core.int>(12, _omitFieldNames ? '' : 'AutoRefresh', $pb.PbFieldType.O3, protoName: 'AutoRefresh')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
Dashboard clone() => Dashboard()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
Dashboard copyWith(void Function(Dashboard) updates) => super.copyWith((message) => updates(message as Dashboard)) as Dashboard;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Dashboard create() => Dashboard._();
@$core.override
Dashboard createEmptyInstance() => create();
static $pb.PbList<Dashboard> createRepeated() => $pb.PbList<Dashboard>();
@$core.pragma('dart2js:noInline')
static Dashboard getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Dashboard>(create);
static Dashboard? _defaultInstance;
/// Identifier of the Dashboard
@$pb.TagNumber(1)
$core.String get dashboardID => $_getSZ(0);
@$pb.TagNumber(1)
set dashboardID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasDashboardID() => $_has(0);
@$pb.TagNumber(1)
void clearDashboardID() => $_clearField(1);
/// Name of the Dashboard
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@$pb.TagNumber(2)
set name($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
void clearName() => $_clearField(2);
/// All the widgets in Dashboard
@$pb.TagNumber(3)
$core.String get content => $_getSZ(2);
@$pb.TagNumber(3)
set content($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasContent() => $_has(2);
@$pb.TagNumber(3)
void clearContent() => $_clearField(3);
/// Identifier of the user who created
@$pb.TagNumber(4)
$core.String get createUserID => $_getSZ(3);
@$pb.TagNumber(4)
set createUserID($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasCreateUserID() => $_has(3);
@$pb.TagNumber(4)
void clearCreateUserID() => $_clearField(4);
/// Identifier of the user who did the last update
@$pb.TagNumber(5)
$core.String get updateUserID => $_getSZ(4);
@$pb.TagNumber(5)
set updateUserID($core.String value) => $_setString(4, value);
@$pb.TagNumber(5)
$core.bool hasUpdateUserID() => $_has(4);
@$pb.TagNumber(5)
void clearUpdateUserID() => $_clearField(5);
/// Date of creation in ISO 8601 format with time zone (accepted tzd formats: [+01:00, -01:00, Z]
@$pb.TagNumber(6)
$core.String get createDate => $_getSZ(5);
@$pb.TagNumber(6)
set createDate($core.String value) => $_setString(5, value);
@$pb.TagNumber(6)
$core.bool hasCreateDate() => $_has(5);
@$pb.TagNumber(6)
void clearCreateDate() => $_clearField(6);
/// Date of last update in ISO 8601 format with time zone (accepted tzd formats: [+01:00, -01:00, Z]
@$pb.TagNumber(7)
$core.String get updateDate => $_getSZ(6);
@$pb.TagNumber(7)
set updateDate($core.String value) => $_setString(6, value);
@$pb.TagNumber(7)
$core.bool hasUpdateDate() => $_has(6);
@$pb.TagNumber(7)
void clearUpdateDate() => $_clearField(7);
/// Visibility of the Dashboard
@$pb.TagNumber(8)
$core.bool get isPrivate => $_getBF(7);
@$pb.TagNumber(8)
set isPrivate($core.bool value) => $_setBool(7, value);
@$pb.TagNumber(8)
$core.bool hasIsPrivate() => $_has(7);
@$pb.TagNumber(8)
void clearIsPrivate() => $_clearField(8);
@$pb.TagNumber(12)
$core.int get autoRefresh => $_getIZ(8);
@$pb.TagNumber(12)
set autoRefresh($core.int value) => $_setSignedInt32(8, value);
@$pb.TagNumber(12)
$core.bool hasAutoRefresh() => $_has(8);
@$pb.TagNumber(12)
void clearAutoRefresh() => $_clearField(12);
}
class ListDashboardRequest extends $pb.GeneratedMessage {
factory ListDashboardRequest({
$1.RequestProjectHeader? header,
}) {
final result = create();
if (header != null) result.header = header;
return result;
}
ListDashboardRequest._();
factory ListDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListDashboardRequest clone() => ListDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListDashboardRequest copyWith(void Function(ListDashboardRequest) updates) => super.copyWith((message) => updates(message as ListDashboardRequest)) as ListDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListDashboardRequest create() => ListDashboardRequest._();
@$core.override
ListDashboardRequest createEmptyInstance() => create();
static $pb.PbList<ListDashboardRequest> createRepeated() => $pb.PbList<ListDashboardRequest>();
@$core.pragma('dart2js:noInline')
static ListDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListDashboardRequest>(create);
static ListDashboardRequest? _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);
}
/// List of Dashboards
class ListDashboardResult extends $pb.GeneratedMessage {
factory ListDashboardResult({
$core.Iterable<Dashboard>? results,
}) {
final result = create();
if (results != null) result.results.addAll(results);
return result;
}
ListDashboardResult._();
factory ListDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..pc<Dashboard>(1, _omitFieldNames ? '' : 'Results', $pb.PbFieldType.PM, protoName: 'Results', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListDashboardResult clone() => ListDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListDashboardResult copyWith(void Function(ListDashboardResult) updates) => super.copyWith((message) => updates(message as ListDashboardResult)) as ListDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListDashboardResult create() => ListDashboardResult._();
@$core.override
ListDashboardResult createEmptyInstance() => create();
static $pb.PbList<ListDashboardResult> createRepeated() => $pb.PbList<ListDashboardResult>();
@$core.pragma('dart2js:noInline')
static ListDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListDashboardResult>(create);
static ListDashboardResult? _defaultInstance;
/// All information in a Dashboard
@$pb.TagNumber(1)
$pb.PbList<Dashboard> get results => $_getList(0);
}
/// Information that needs to be stored
class CreateDashboardRequest extends $pb.GeneratedMessage {
factory CreateDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? name,
$core.String? content,
$core.bool? isPrivate,
$core.int? autoRefresh,
}) {
final result = create();
if (header != null) result.header = header;
if (name != null) result.name = name;
if (content != null) result.content = content;
if (isPrivate != null) result.isPrivate = isPrivate;
if (autoRefresh != null) result.autoRefresh = autoRefresh;
return result;
}
CreateDashboardRequest._();
factory CreateDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..aOS(3, _omitFieldNames ? '' : 'content')
..aOB(4, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate')
..a<$core.int>(8, _omitFieldNames ? '' : 'AutoRefresh', $pb.PbFieldType.O3, protoName: 'AutoRefresh')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateDashboardRequest clone() => CreateDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateDashboardRequest copyWith(void Function(CreateDashboardRequest) updates) => super.copyWith((message) => updates(message as CreateDashboardRequest)) as CreateDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateDashboardRequest create() => CreateDashboardRequest._();
@$core.override
CreateDashboardRequest createEmptyInstance() => create();
static $pb.PbList<CreateDashboardRequest> createRepeated() => $pb.PbList<CreateDashboardRequest>();
@$core.pragma('dart2js:noInline')
static CreateDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateDashboardRequest>(create);
static CreateDashboardRequest? _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);
/// Name of the Dashboard
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@$pb.TagNumber(2)
set name($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
void clearName() => $_clearField(2);
/// All widgets in Dashboard
@$pb.TagNumber(3)
$core.String get content => $_getSZ(2);
@$pb.TagNumber(3)
set content($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasContent() => $_has(2);
@$pb.TagNumber(3)
void clearContent() => $_clearField(3);
/// Visibility of the Dashboard
@$pb.TagNumber(4)
$core.bool get isPrivate => $_getBF(3);
@$pb.TagNumber(4)
set isPrivate($core.bool value) => $_setBool(3, value);
@$pb.TagNumber(4)
$core.bool hasIsPrivate() => $_has(3);
@$pb.TagNumber(4)
void clearIsPrivate() => $_clearField(4);
@$pb.TagNumber(8)
$core.int get autoRefresh => $_getIZ(4);
@$pb.TagNumber(8)
set autoRefresh($core.int value) => $_setSignedInt32(4, value);
@$pb.TagNumber(8)
$core.bool hasAutoRefresh() => $_has(4);
@$pb.TagNumber(8)
void clearAutoRefresh() => $_clearField(8);
}
/// Created Dashboard
class CreateDashboardResult extends $pb.GeneratedMessage {
factory CreateDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
CreateDashboardResult._();
factory CreateDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateDashboardResult clone() => CreateDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateDashboardResult copyWith(void Function(CreateDashboardResult) updates) => super.copyWith((message) => updates(message as CreateDashboardResult)) as CreateDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateDashboardResult create() => CreateDashboardResult._();
@$core.override
CreateDashboardResult createEmptyInstance() => create();
static $pb.PbList<CreateDashboardResult> createRepeated() => $pb.PbList<CreateDashboardResult>();
@$core.pragma('dart2js:noInline')
static CreateDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateDashboardResult>(create);
static CreateDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
/// IDs of the Dashboard to be deleted
class DeleteDashboardRequest extends $pb.GeneratedMessage {
factory DeleteDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
return result;
}
DeleteDashboardRequest._();
factory DeleteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardRequest clone() => DeleteDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardRequest copyWith(void Function(DeleteDashboardRequest) updates) => super.copyWith((message) => updates(message as DeleteDashboardRequest)) as DeleteDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteDashboardRequest create() => DeleteDashboardRequest._();
@$core.override
DeleteDashboardRequest createEmptyInstance() => create();
static $pb.PbList<DeleteDashboardRequest> createRepeated() => $pb.PbList<DeleteDashboardRequest>();
@$core.pragma('dart2js:noInline')
static DeleteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardRequest>(create);
static DeleteDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
}
class DeleteDashboardResult extends $pb.GeneratedMessage {
factory DeleteDashboardResult() => create();
DeleteDashboardResult._();
factory DeleteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardResult clone() => DeleteDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardResult copyWith(void Function(DeleteDashboardResult) updates) => super.copyWith((message) => updates(message as DeleteDashboardResult)) as DeleteDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteDashboardResult create() => DeleteDashboardResult._();
@$core.override
DeleteDashboardResult createEmptyInstance() => create();
static $pb.PbList<DeleteDashboardResult> createRepeated() => $pb.PbList<DeleteDashboardResult>();
@$core.pragma('dart2js:noInline')
static DeleteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardResult>(create);
static DeleteDashboardResult? _defaultInstance;
}
/// Organization identifier to delete the dashboards from
class DeleteDashboardsForOrganisationRequest extends $pb.GeneratedMessage {
factory DeleteDashboardsForOrganisationRequest({
$core.String? organisationID,
}) {
final result = create();
if (organisationID != null) result.organisationID = organisationID;
return result;
}
DeleteDashboardsForOrganisationRequest._();
factory DeleteDashboardsForOrganisationRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteDashboardsForOrganisationRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardsForOrganisationRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOS(2, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForOrganisationRequest clone() => DeleteDashboardsForOrganisationRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForOrganisationRequest copyWith(void Function(DeleteDashboardsForOrganisationRequest) updates) => super.copyWith((message) => updates(message as DeleteDashboardsForOrganisationRequest)) as DeleteDashboardsForOrganisationRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForOrganisationRequest create() => DeleteDashboardsForOrganisationRequest._();
@$core.override
DeleteDashboardsForOrganisationRequest createEmptyInstance() => create();
static $pb.PbList<DeleteDashboardsForOrganisationRequest> createRepeated() => $pb.PbList<DeleteDashboardsForOrganisationRequest>();
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForOrganisationRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardsForOrganisationRequest>(create);
static DeleteDashboardsForOrganisationRequest? _defaultInstance;
/// Identifier of the Organization
@$pb.TagNumber(2)
$core.String get organisationID => $_getSZ(0);
@$pb.TagNumber(2)
set organisationID($core.String value) => $_setString(0, value);
@$pb.TagNumber(2)
$core.bool hasOrganisationID() => $_has(0);
@$pb.TagNumber(2)
void clearOrganisationID() => $_clearField(2);
}
class DeleteDashboardsForOrganisationResult extends $pb.GeneratedMessage {
factory DeleteDashboardsForOrganisationResult() => create();
DeleteDashboardsForOrganisationResult._();
factory DeleteDashboardsForOrganisationResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteDashboardsForOrganisationResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardsForOrganisationResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForOrganisationResult clone() => DeleteDashboardsForOrganisationResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForOrganisationResult copyWith(void Function(DeleteDashboardsForOrganisationResult) updates) => super.copyWith((message) => updates(message as DeleteDashboardsForOrganisationResult)) as DeleteDashboardsForOrganisationResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForOrganisationResult create() => DeleteDashboardsForOrganisationResult._();
@$core.override
DeleteDashboardsForOrganisationResult createEmptyInstance() => create();
static $pb.PbList<DeleteDashboardsForOrganisationResult> createRepeated() => $pb.PbList<DeleteDashboardsForOrganisationResult>();
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForOrganisationResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardsForOrganisationResult>(create);
static DeleteDashboardsForOrganisationResult? _defaultInstance;
}
/// Project identifier to delete the dashboards from
class DeleteDashboardsForProjectRequest extends $pb.GeneratedMessage {
factory DeleteDashboardsForProjectRequest({
$core.String? projectID,
}) {
final result = create();
if (projectID != null) result.projectID = projectID;
return result;
}
DeleteDashboardsForProjectRequest._();
factory DeleteDashboardsForProjectRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteDashboardsForProjectRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardsForProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForProjectRequest clone() => DeleteDashboardsForProjectRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForProjectRequest copyWith(void Function(DeleteDashboardsForProjectRequest) updates) => super.copyWith((message) => updates(message as DeleteDashboardsForProjectRequest)) as DeleteDashboardsForProjectRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForProjectRequest create() => DeleteDashboardsForProjectRequest._();
@$core.override
DeleteDashboardsForProjectRequest createEmptyInstance() => create();
static $pb.PbList<DeleteDashboardsForProjectRequest> createRepeated() => $pb.PbList<DeleteDashboardsForProjectRequest>();
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForProjectRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardsForProjectRequest>(create);
static DeleteDashboardsForProjectRequest? _defaultInstance;
/// Identifier of the Project
@$pb.TagNumber(1)
$core.String get projectID => $_getSZ(0);
@$pb.TagNumber(1)
set projectID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasProjectID() => $_has(0);
@$pb.TagNumber(1)
void clearProjectID() => $_clearField(1);
}
class DeleteDashboardsForProjectResult extends $pb.GeneratedMessage {
factory DeleteDashboardsForProjectResult() => create();
DeleteDashboardsForProjectResult._();
factory DeleteDashboardsForProjectResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteDashboardsForProjectResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardsForProjectResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForProjectResult clone() => DeleteDashboardsForProjectResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteDashboardsForProjectResult copyWith(void Function(DeleteDashboardsForProjectResult) updates) => super.copyWith((message) => updates(message as DeleteDashboardsForProjectResult)) as DeleteDashboardsForProjectResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForProjectResult create() => DeleteDashboardsForProjectResult._();
@$core.override
DeleteDashboardsForProjectResult createEmptyInstance() => create();
static $pb.PbList<DeleteDashboardsForProjectResult> createRepeated() => $pb.PbList<DeleteDashboardsForProjectResult>();
@$core.pragma('dart2js:noInline')
static DeleteDashboardsForProjectResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardsForProjectResult>(create);
static DeleteDashboardsForProjectResult? _defaultInstance;
}
/// Information that needs to be updated
class UpdateDashboardRequest extends $pb.GeneratedMessage {
factory UpdateDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
$1.StringObject? name,
$1.StringObject? content,
$1.BoolObject? isPrivate,
$1.Int32Object? autoRefresh,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
if (name != null) result.name = name;
if (content != null) result.content = content;
if (isPrivate != null) result.isPrivate = isPrivate;
if (autoRefresh != null) result.autoRefresh = autoRefresh;
return result;
}
UpdateDashboardRequest._();
factory UpdateDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory UpdateDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..aOM<$1.StringObject>(3, _omitFieldNames ? '' : 'Name', protoName: 'Name', subBuilder: $1.StringObject.create)
..aOM<$1.StringObject>(4, _omitFieldNames ? '' : 'Content', protoName: 'Content', subBuilder: $1.StringObject.create)
..aOM<$1.BoolObject>(5, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate', subBuilder: $1.BoolObject.create)
..aOM<$1.Int32Object>(9, _omitFieldNames ? '' : 'AutoRefresh', protoName: 'AutoRefresh', subBuilder: $1.Int32Object.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateDashboardRequest clone() => UpdateDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateDashboardRequest copyWith(void Function(UpdateDashboardRequest) updates) => super.copyWith((message) => updates(message as UpdateDashboardRequest)) as UpdateDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static UpdateDashboardRequest create() => UpdateDashboardRequest._();
@$core.override
UpdateDashboardRequest createEmptyInstance() => create();
static $pb.PbList<UpdateDashboardRequest> createRepeated() => $pb.PbList<UpdateDashboardRequest>();
@$core.pragma('dart2js:noInline')
static UpdateDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateDashboardRequest>(create);
static UpdateDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
/// Name of the Dashboard
@$pb.TagNumber(3)
$1.StringObject get name => $_getN(2);
@$pb.TagNumber(3)
set name($1.StringObject value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasName() => $_has(2);
@$pb.TagNumber(3)
void clearName() => $_clearField(3);
@$pb.TagNumber(3)
$1.StringObject ensureName() => $_ensure(2);
/// All the widgets in Dashboard
@$pb.TagNumber(4)
$1.StringObject get content => $_getN(3);
@$pb.TagNumber(4)
set content($1.StringObject value) => $_setField(4, value);
@$pb.TagNumber(4)
$core.bool hasContent() => $_has(3);
@$pb.TagNumber(4)
void clearContent() => $_clearField(4);
@$pb.TagNumber(4)
$1.StringObject ensureContent() => $_ensure(3);
/// Visibility of the Dashboard
@$pb.TagNumber(5)
$1.BoolObject get isPrivate => $_getN(4);
@$pb.TagNumber(5)
set isPrivate($1.BoolObject value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasIsPrivate() => $_has(4);
@$pb.TagNumber(5)
void clearIsPrivate() => $_clearField(5);
@$pb.TagNumber(5)
$1.BoolObject ensureIsPrivate() => $_ensure(4);
@$pb.TagNumber(9)
$1.Int32Object get autoRefresh => $_getN(5);
@$pb.TagNumber(9)
set autoRefresh($1.Int32Object value) => $_setField(9, value);
@$pb.TagNumber(9)
$core.bool hasAutoRefresh() => $_has(5);
@$pb.TagNumber(9)
void clearAutoRefresh() => $_clearField(9);
@$pb.TagNumber(9)
$1.Int32Object ensureAutoRefresh() => $_ensure(5);
}
/// Updated Dashboard information
class UpdateDashboardResult extends $pb.GeneratedMessage {
factory UpdateDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
UpdateDashboardResult._();
factory UpdateDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory UpdateDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateDashboardResult clone() => UpdateDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateDashboardResult copyWith(void Function(UpdateDashboardResult) updates) => super.copyWith((message) => updates(message as UpdateDashboardResult)) as UpdateDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static UpdateDashboardResult create() => UpdateDashboardResult._();
@$core.override
UpdateDashboardResult createEmptyInstance() => create();
static $pb.PbList<UpdateDashboardResult> createRepeated() => $pb.PbList<UpdateDashboardResult>();
@$core.pragma('dart2js:noInline')
static UpdateDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateDashboardResult>(create);
static UpdateDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
/// IDs of the Dashboard
class GetDashboardRequest extends $pb.GeneratedMessage {
factory GetDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
return result;
}
GetDashboardRequest._();
factory GetDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetDashboardRequest clone() => GetDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetDashboardRequest copyWith(void Function(GetDashboardRequest) updates) => super.copyWith((message) => updates(message as GetDashboardRequest)) as GetDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetDashboardRequest create() => GetDashboardRequest._();
@$core.override
GetDashboardRequest createEmptyInstance() => create();
static $pb.PbList<GetDashboardRequest> createRepeated() => $pb.PbList<GetDashboardRequest>();
@$core.pragma('dart2js:noInline')
static GetDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetDashboardRequest>(create);
static GetDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
}
/// All information about the Dashboard
class GetDashboardResult extends $pb.GeneratedMessage {
factory GetDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
GetDashboardResult._();
factory GetDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetDashboardResult clone() => GetDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetDashboardResult copyWith(void Function(GetDashboardResult) updates) => super.copyWith((message) => updates(message as GetDashboardResult)) as GetDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetDashboardResult create() => GetDashboardResult._();
@$core.override
GetDashboardResult createEmptyInstance() => create();
static $pb.PbList<GetDashboardResult> createRepeated() => $pb.PbList<GetDashboardResult>();
@$core.pragma('dart2js:noInline')
static GetDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetDashboardResult>(create);
static GetDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
class CopyDashboardRequest extends $pb.GeneratedMessage {
factory CopyDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
$core.String? name,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
if (name != null) result.name = name;
return result;
}
CopyDashboardRequest._();
factory CopyDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CopyDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CopyDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyDashboardRequest clone() => CopyDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyDashboardRequest copyWith(void Function(CopyDashboardRequest) updates) => super.copyWith((message) => updates(message as CopyDashboardRequest)) as CopyDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CopyDashboardRequest create() => CopyDashboardRequest._();
@$core.override
CopyDashboardRequest createEmptyInstance() => create();
static $pb.PbList<CopyDashboardRequest> createRepeated() => $pb.PbList<CopyDashboardRequest>();
@$core.pragma('dart2js:noInline')
static CopyDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CopyDashboardRequest>(create);
static CopyDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
/// Name of the new Dashboard
@$pb.TagNumber(3)
$core.String get name => $_getSZ(2);
@$pb.TagNumber(3)
set name($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasName() => $_has(2);
@$pb.TagNumber(3)
void clearName() => $_clearField(3);
}
/// New copied dashboard
class CopyDashboardResult extends $pb.GeneratedMessage {
factory CopyDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
CopyDashboardResult._();
factory CopyDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CopyDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CopyDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyDashboardResult clone() => CopyDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyDashboardResult copyWith(void Function(CopyDashboardResult) updates) => super.copyWith((message) => updates(message as CopyDashboardResult)) as CopyDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CopyDashboardResult create() => CopyDashboardResult._();
@$core.override
CopyDashboardResult createEmptyInstance() => create();
static $pb.PbList<CopyDashboardResult> createRepeated() => $pb.PbList<CopyDashboardResult>();
@$core.pragma('dart2js:noInline')
static CopyDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CopyDashboardResult>(create);
static CopyDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
class ListProjectDashboardRequest extends $pb.GeneratedMessage {
factory ListProjectDashboardRequest({
$1.RequestProjectHeader? header,
}) {
final result = create();
if (header != null) result.header = header;
return result;
}
ListProjectDashboardRequest._();
factory ListProjectDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListProjectDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListProjectDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListProjectDashboardRequest clone() => ListProjectDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListProjectDashboardRequest copyWith(void Function(ListProjectDashboardRequest) updates) => super.copyWith((message) => updates(message as ListProjectDashboardRequest)) as ListProjectDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListProjectDashboardRequest create() => ListProjectDashboardRequest._();
@$core.override
ListProjectDashboardRequest createEmptyInstance() => create();
static $pb.PbList<ListProjectDashboardRequest> createRepeated() => $pb.PbList<ListProjectDashboardRequest>();
@$core.pragma('dart2js:noInline')
static ListProjectDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListProjectDashboardRequest>(create);
static ListProjectDashboardRequest? _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);
}
/// List of Dashboards
class ListProjectDashboardResult extends $pb.GeneratedMessage {
factory ListProjectDashboardResult({
$core.Iterable<Dashboard>? results,
}) {
final result = create();
if (results != null) result.results.addAll(results);
return result;
}
ListProjectDashboardResult._();
factory ListProjectDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListProjectDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListProjectDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..pc<Dashboard>(1, _omitFieldNames ? '' : 'Results', $pb.PbFieldType.PM, protoName: 'Results', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListProjectDashboardResult clone() => ListProjectDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListProjectDashboardResult copyWith(void Function(ListProjectDashboardResult) updates) => super.copyWith((message) => updates(message as ListProjectDashboardResult)) as ListProjectDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListProjectDashboardResult create() => ListProjectDashboardResult._();
@$core.override
ListProjectDashboardResult createEmptyInstance() => create();
static $pb.PbList<ListProjectDashboardResult> createRepeated() => $pb.PbList<ListProjectDashboardResult>();
@$core.pragma('dart2js:noInline')
static ListProjectDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListProjectDashboardResult>(create);
static ListProjectDashboardResult? _defaultInstance;
/// All information in a Dashboard
@$pb.TagNumber(1)
$pb.PbList<Dashboard> get results => $_getList(0);
}
/// Information that needs to be stored
class CreateProjectDashboardRequest extends $pb.GeneratedMessage {
factory CreateProjectDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? name,
$core.String? content,
$core.bool? isPrivate,
$core.int? autoRefresh,
}) {
final result = create();
if (header != null) result.header = header;
if (name != null) result.name = name;
if (content != null) result.content = content;
if (isPrivate != null) result.isPrivate = isPrivate;
if (autoRefresh != null) result.autoRefresh = autoRefresh;
return result;
}
CreateProjectDashboardRequest._();
factory CreateProjectDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateProjectDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateProjectDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..aOS(3, _omitFieldNames ? '' : 'content')
..aOB(4, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate')
..a<$core.int>(8, _omitFieldNames ? '' : 'AutoRefresh', $pb.PbFieldType.O3, protoName: 'AutoRefresh')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateProjectDashboardRequest clone() => CreateProjectDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateProjectDashboardRequest copyWith(void Function(CreateProjectDashboardRequest) updates) => super.copyWith((message) => updates(message as CreateProjectDashboardRequest)) as CreateProjectDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateProjectDashboardRequest create() => CreateProjectDashboardRequest._();
@$core.override
CreateProjectDashboardRequest createEmptyInstance() => create();
static $pb.PbList<CreateProjectDashboardRequest> createRepeated() => $pb.PbList<CreateProjectDashboardRequest>();
@$core.pragma('dart2js:noInline')
static CreateProjectDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateProjectDashboardRequest>(create);
static CreateProjectDashboardRequest? _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);
/// Name of the Dashboard
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@$pb.TagNumber(2)
set name($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
void clearName() => $_clearField(2);
/// All widgets in Dashboard
@$pb.TagNumber(3)
$core.String get content => $_getSZ(2);
@$pb.TagNumber(3)
set content($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasContent() => $_has(2);
@$pb.TagNumber(3)
void clearContent() => $_clearField(3);
/// Visibility of the Dashboard
@$pb.TagNumber(4)
$core.bool get isPrivate => $_getBF(3);
@$pb.TagNumber(4)
set isPrivate($core.bool value) => $_setBool(3, value);
@$pb.TagNumber(4)
$core.bool hasIsPrivate() => $_has(3);
@$pb.TagNumber(4)
void clearIsPrivate() => $_clearField(4);
@$pb.TagNumber(8)
$core.int get autoRefresh => $_getIZ(4);
@$pb.TagNumber(8)
set autoRefresh($core.int value) => $_setSignedInt32(4, value);
@$pb.TagNumber(8)
$core.bool hasAutoRefresh() => $_has(4);
@$pb.TagNumber(8)
void clearAutoRefresh() => $_clearField(8);
}
/// Created Dashboard
class CreateProjectDashboardResult extends $pb.GeneratedMessage {
factory CreateProjectDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
CreateProjectDashboardResult._();
factory CreateProjectDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateProjectDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateProjectDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateProjectDashboardResult clone() => CreateProjectDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateProjectDashboardResult copyWith(void Function(CreateProjectDashboardResult) updates) => super.copyWith((message) => updates(message as CreateProjectDashboardResult)) as CreateProjectDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateProjectDashboardResult create() => CreateProjectDashboardResult._();
@$core.override
CreateProjectDashboardResult createEmptyInstance() => create();
static $pb.PbList<CreateProjectDashboardResult> createRepeated() => $pb.PbList<CreateProjectDashboardResult>();
@$core.pragma('dart2js:noInline')
static CreateProjectDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateProjectDashboardResult>(create);
static CreateProjectDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
/// IDs of the Dashboard to be deleted
class DeleteProjectDashboardRequest extends $pb.GeneratedMessage {
factory DeleteProjectDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
return result;
}
DeleteProjectDashboardRequest._();
factory DeleteProjectDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteProjectDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteProjectDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteProjectDashboardRequest clone() => DeleteProjectDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteProjectDashboardRequest copyWith(void Function(DeleteProjectDashboardRequest) updates) => super.copyWith((message) => updates(message as DeleteProjectDashboardRequest)) as DeleteProjectDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteProjectDashboardRequest create() => DeleteProjectDashboardRequest._();
@$core.override
DeleteProjectDashboardRequest createEmptyInstance() => create();
static $pb.PbList<DeleteProjectDashboardRequest> createRepeated() => $pb.PbList<DeleteProjectDashboardRequest>();
@$core.pragma('dart2js:noInline')
static DeleteProjectDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteProjectDashboardRequest>(create);
static DeleteProjectDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
}
class DeleteProjectDashboardResult extends $pb.GeneratedMessage {
factory DeleteProjectDashboardResult() => create();
DeleteProjectDashboardResult._();
factory DeleteProjectDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteProjectDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteProjectDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteProjectDashboardResult clone() => DeleteProjectDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteProjectDashboardResult copyWith(void Function(DeleteProjectDashboardResult) updates) => super.copyWith((message) => updates(message as DeleteProjectDashboardResult)) as DeleteProjectDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteProjectDashboardResult create() => DeleteProjectDashboardResult._();
@$core.override
DeleteProjectDashboardResult createEmptyInstance() => create();
static $pb.PbList<DeleteProjectDashboardResult> createRepeated() => $pb.PbList<DeleteProjectDashboardResult>();
@$core.pragma('dart2js:noInline')
static DeleteProjectDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteProjectDashboardResult>(create);
static DeleteProjectDashboardResult? _defaultInstance;
}
/// Information that needs to be updated
class UpdateProjectDashboardRequest extends $pb.GeneratedMessage {
factory UpdateProjectDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
$1.StringObject? name,
$1.StringObject? content,
$1.BoolObject? isPrivate,
$1.Int32Object? autoRefresh,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
if (name != null) result.name = name;
if (content != null) result.content = content;
if (isPrivate != null) result.isPrivate = isPrivate;
if (autoRefresh != null) result.autoRefresh = autoRefresh;
return result;
}
UpdateProjectDashboardRequest._();
factory UpdateProjectDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory UpdateProjectDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateProjectDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..aOM<$1.StringObject>(3, _omitFieldNames ? '' : 'Name', protoName: 'Name', subBuilder: $1.StringObject.create)
..aOM<$1.StringObject>(4, _omitFieldNames ? '' : 'Content', protoName: 'Content', subBuilder: $1.StringObject.create)
..aOM<$1.BoolObject>(5, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate', subBuilder: $1.BoolObject.create)
..aOM<$1.Int32Object>(9, _omitFieldNames ? '' : 'AutoRefresh', protoName: 'AutoRefresh', subBuilder: $1.Int32Object.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateProjectDashboardRequest clone() => UpdateProjectDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateProjectDashboardRequest copyWith(void Function(UpdateProjectDashboardRequest) updates) => super.copyWith((message) => updates(message as UpdateProjectDashboardRequest)) as UpdateProjectDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static UpdateProjectDashboardRequest create() => UpdateProjectDashboardRequest._();
@$core.override
UpdateProjectDashboardRequest createEmptyInstance() => create();
static $pb.PbList<UpdateProjectDashboardRequest> createRepeated() => $pb.PbList<UpdateProjectDashboardRequest>();
@$core.pragma('dart2js:noInline')
static UpdateProjectDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateProjectDashboardRequest>(create);
static UpdateProjectDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
/// Name of the Dashboard
@$pb.TagNumber(3)
$1.StringObject get name => $_getN(2);
@$pb.TagNumber(3)
set name($1.StringObject value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasName() => $_has(2);
@$pb.TagNumber(3)
void clearName() => $_clearField(3);
@$pb.TagNumber(3)
$1.StringObject ensureName() => $_ensure(2);
/// All the widgets in Dashboard
@$pb.TagNumber(4)
$1.StringObject get content => $_getN(3);
@$pb.TagNumber(4)
set content($1.StringObject value) => $_setField(4, value);
@$pb.TagNumber(4)
$core.bool hasContent() => $_has(3);
@$pb.TagNumber(4)
void clearContent() => $_clearField(4);
@$pb.TagNumber(4)
$1.StringObject ensureContent() => $_ensure(3);
/// Visibility of the Dashboard
@$pb.TagNumber(5)
$1.BoolObject get isPrivate => $_getN(4);
@$pb.TagNumber(5)
set isPrivate($1.BoolObject value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasIsPrivate() => $_has(4);
@$pb.TagNumber(5)
void clearIsPrivate() => $_clearField(5);
@$pb.TagNumber(5)
$1.BoolObject ensureIsPrivate() => $_ensure(4);
@$pb.TagNumber(9)
$1.Int32Object get autoRefresh => $_getN(5);
@$pb.TagNumber(9)
set autoRefresh($1.Int32Object value) => $_setField(9, value);
@$pb.TagNumber(9)
$core.bool hasAutoRefresh() => $_has(5);
@$pb.TagNumber(9)
void clearAutoRefresh() => $_clearField(9);
@$pb.TagNumber(9)
$1.Int32Object ensureAutoRefresh() => $_ensure(5);
}
/// Updated Dashboard information
class UpdateProjectDashboardResult extends $pb.GeneratedMessage {
factory UpdateProjectDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
UpdateProjectDashboardResult._();
factory UpdateProjectDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory UpdateProjectDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateProjectDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateProjectDashboardResult clone() => UpdateProjectDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UpdateProjectDashboardResult copyWith(void Function(UpdateProjectDashboardResult) updates) => super.copyWith((message) => updates(message as UpdateProjectDashboardResult)) as UpdateProjectDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static UpdateProjectDashboardResult create() => UpdateProjectDashboardResult._();
@$core.override
UpdateProjectDashboardResult createEmptyInstance() => create();
static $pb.PbList<UpdateProjectDashboardResult> createRepeated() => $pb.PbList<UpdateProjectDashboardResult>();
@$core.pragma('dart2js:noInline')
static UpdateProjectDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateProjectDashboardResult>(create);
static UpdateProjectDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
/// IDs of the Dashboard
class GetProjectDashboardRequest extends $pb.GeneratedMessage {
factory GetProjectDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
return result;
}
GetProjectDashboardRequest._();
factory GetProjectDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetProjectDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetProjectDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetProjectDashboardRequest clone() => GetProjectDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetProjectDashboardRequest copyWith(void Function(GetProjectDashboardRequest) updates) => super.copyWith((message) => updates(message as GetProjectDashboardRequest)) as GetProjectDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetProjectDashboardRequest create() => GetProjectDashboardRequest._();
@$core.override
GetProjectDashboardRequest createEmptyInstance() => create();
static $pb.PbList<GetProjectDashboardRequest> createRepeated() => $pb.PbList<GetProjectDashboardRequest>();
@$core.pragma('dart2js:noInline')
static GetProjectDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetProjectDashboardRequest>(create);
static GetProjectDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
}
/// All information about the Dashboard
class GetProjectDashboardResult extends $pb.GeneratedMessage {
factory GetProjectDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
GetProjectDashboardResult._();
factory GetProjectDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetProjectDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetProjectDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetProjectDashboardResult clone() => GetProjectDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetProjectDashboardResult copyWith(void Function(GetProjectDashboardResult) updates) => super.copyWith((message) => updates(message as GetProjectDashboardResult)) as GetProjectDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetProjectDashboardResult create() => GetProjectDashboardResult._();
@$core.override
GetProjectDashboardResult createEmptyInstance() => create();
static $pb.PbList<GetProjectDashboardResult> createRepeated() => $pb.PbList<GetProjectDashboardResult>();
@$core.pragma('dart2js:noInline')
static GetProjectDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetProjectDashboardResult>(create);
static GetProjectDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
class CopyProjectDashboardRequest extends $pb.GeneratedMessage {
factory CopyProjectDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
$core.String? name,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
if (name != null) result.name = name;
return result;
}
CopyProjectDashboardRequest._();
factory CopyProjectDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CopyProjectDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CopyProjectDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyProjectDashboardRequest clone() => CopyProjectDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyProjectDashboardRequest copyWith(void Function(CopyProjectDashboardRequest) updates) => super.copyWith((message) => updates(message as CopyProjectDashboardRequest)) as CopyProjectDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CopyProjectDashboardRequest create() => CopyProjectDashboardRequest._();
@$core.override
CopyProjectDashboardRequest createEmptyInstance() => create();
static $pb.PbList<CopyProjectDashboardRequest> createRepeated() => $pb.PbList<CopyProjectDashboardRequest>();
@$core.pragma('dart2js:noInline')
static CopyProjectDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CopyProjectDashboardRequest>(create);
static CopyProjectDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
/// Name of the new Dashboard
@$pb.TagNumber(3)
$core.String get name => $_getSZ(2);
@$pb.TagNumber(3)
set name($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasName() => $_has(2);
@$pb.TagNumber(3)
void clearName() => $_clearField(3);
}
/// New copied dashboard
class CopyProjectDashboardResult extends $pb.GeneratedMessage {
factory CopyProjectDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
CopyProjectDashboardResult._();
factory CopyProjectDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CopyProjectDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CopyProjectDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyProjectDashboardResult clone() => CopyProjectDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CopyProjectDashboardResult copyWith(void Function(CopyProjectDashboardResult) updates) => super.copyWith((message) => updates(message as CopyProjectDashboardResult)) as CopyProjectDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CopyProjectDashboardResult create() => CopyProjectDashboardResult._();
@$core.override
CopyProjectDashboardResult createEmptyInstance() => create();
static $pb.PbList<CopyProjectDashboardResult> createRepeated() => $pb.PbList<CopyProjectDashboardResult>();
@$core.pragma('dart2js:noInline')
static CopyProjectDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CopyProjectDashboardResult>(create);
static CopyProjectDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
class SetOwnerDashboardRequest extends $pb.GeneratedMessage {
factory SetOwnerDashboardRequest({
$1.RequestProjectHeader? header,
$core.String? dashboardID,
$core.String? userID,
}) {
final result = create();
if (header != null) result.header = header;
if (dashboardID != null) result.dashboardID = dashboardID;
if (userID != null) result.userID = userID;
return result;
}
SetOwnerDashboardRequest._();
factory SetOwnerDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory SetOwnerDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SetOwnerDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
..aOS(3, _omitFieldNames ? '' : 'UserID', protoName: 'UserID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SetOwnerDashboardRequest clone() => SetOwnerDashboardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SetOwnerDashboardRequest copyWith(void Function(SetOwnerDashboardRequest) updates) => super.copyWith((message) => updates(message as SetOwnerDashboardRequest)) as SetOwnerDashboardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static SetOwnerDashboardRequest create() => SetOwnerDashboardRequest._();
@$core.override
SetOwnerDashboardRequest createEmptyInstance() => create();
static $pb.PbList<SetOwnerDashboardRequest> createRepeated() => $pb.PbList<SetOwnerDashboardRequest>();
@$core.pragma('dart2js:noInline')
static SetOwnerDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SetOwnerDashboardRequest>(create);
static SetOwnerDashboardRequest? _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);
/// Identifier of the Dashboard
@$pb.TagNumber(2)
$core.String get dashboardID => $_getSZ(1);
@$pb.TagNumber(2)
set dashboardID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasDashboardID() => $_has(1);
@$pb.TagNumber(2)
void clearDashboardID() => $_clearField(2);
/// Identifier of the new owner of the Dashboard
@$pb.TagNumber(3)
$core.String get userID => $_getSZ(2);
@$pb.TagNumber(3)
set userID($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasUserID() => $_has(2);
@$pb.TagNumber(3)
void clearUserID() => $_clearField(3);
}
class SetOwnerDashboardResult extends $pb.GeneratedMessage {
factory SetOwnerDashboardResult({
Dashboard? result,
}) {
final result$ = create();
if (result != null) result$.result = result;
return result$;
}
SetOwnerDashboardResult._();
factory SetOwnerDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory SetOwnerDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SetOwnerDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SetOwnerDashboardResult clone() => SetOwnerDashboardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SetOwnerDashboardResult copyWith(void Function(SetOwnerDashboardResult) updates) => super.copyWith((message) => updates(message as SetOwnerDashboardResult)) as SetOwnerDashboardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static SetOwnerDashboardResult create() => SetOwnerDashboardResult._();
@$core.override
SetOwnerDashboardResult createEmptyInstance() => create();
static $pb.PbList<SetOwnerDashboardResult> createRepeated() => $pb.PbList<SetOwnerDashboardResult>();
@$core.pragma('dart2js:noInline')
static SetOwnerDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SetOwnerDashboardResult>(create);
static SetOwnerDashboardResult? _defaultInstance;
@$pb.TagNumber(1)
Dashboard get result => $_getN(0);
@$pb.TagNumber(1)
set result(Dashboard value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => $_clearField(1);
@$pb.TagNumber(1)
Dashboard ensureResult() => $_ensure(0);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');