ft/adds email_address and phone_number tables ft/adds email and phone endpoints ft/adds account_level query
129 lines
5.4 KiB
Dart
129 lines
5.4 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: rpc_list_accounts.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
import 'account.pb.dart' as $33;
|
|
|
|
class ListAccountsRequest extends $pb.GeneratedMessage {
|
|
factory ListAccountsRequest({
|
|
$core.int? pageId,
|
|
$core.int? pageSize,
|
|
}) {
|
|
final $result = create();
|
|
if (pageId != null) {
|
|
$result.pageId = pageId;
|
|
}
|
|
if (pageSize != null) {
|
|
$result.pageSize = pageSize;
|
|
}
|
|
return $result;
|
|
}
|
|
ListAccountsRequest._() : super();
|
|
factory ListAccountsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory ListAccountsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAccountsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
|
..a<$core.int>(1, _omitFieldNames ? '' : 'pageId', $pb.PbFieldType.OU3)
|
|
..a<$core.int>(2, _omitFieldNames ? '' : 'pageSize', $pb.PbFieldType.OU3)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
ListAccountsRequest clone() => ListAccountsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
ListAccountsRequest copyWith(void Function(ListAccountsRequest) updates) => super.copyWith((message) => updates(message as ListAccountsRequest)) as ListAccountsRequest;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static ListAccountsRequest create() => ListAccountsRequest._();
|
|
ListAccountsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<ListAccountsRequest> createRepeated() => $pb.PbList<ListAccountsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static ListAccountsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAccountsRequest>(create);
|
|
static ListAccountsRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.int get pageId => $_getIZ(0);
|
|
@$pb.TagNumber(1)
|
|
set pageId($core.int v) { $_setUnsignedInt32(0, v); }
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasPageId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearPageId() => clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.int get pageSize => $_getIZ(1);
|
|
@$pb.TagNumber(2)
|
|
set pageSize($core.int v) { $_setUnsignedInt32(1, v); }
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasPageSize() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearPageSize() => clearField(2);
|
|
}
|
|
|
|
class ListAccountsResponse extends $pb.GeneratedMessage {
|
|
factory ListAccountsResponse({
|
|
$core.Iterable<$33.Account>? accounts,
|
|
}) {
|
|
final $result = create();
|
|
if (accounts != null) {
|
|
$result.accounts.addAll(accounts);
|
|
}
|
|
return $result;
|
|
}
|
|
ListAccountsResponse._() : super();
|
|
factory ListAccountsResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory ListAccountsResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAccountsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'pb'), createEmptyInstance: create)
|
|
..pc<$33.Account>(1, _omitFieldNames ? '' : 'accounts', $pb.PbFieldType.PM, subBuilder: $33.Account.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
ListAccountsResponse clone() => ListAccountsResponse()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
ListAccountsResponse copyWith(void Function(ListAccountsResponse) updates) => super.copyWith((message) => updates(message as ListAccountsResponse)) as ListAccountsResponse;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static ListAccountsResponse create() => ListAccountsResponse._();
|
|
ListAccountsResponse createEmptyInstance() => create();
|
|
static $pb.PbList<ListAccountsResponse> createRepeated() => $pb.PbList<ListAccountsResponse>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static ListAccountsResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAccountsResponse>(create);
|
|
static ListAccountsResponse? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.List<$33.Account> get accounts => $_getList(0);
|
|
}
|
|
|
|
|
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|