You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -208,6 +208,76 @@ class GetMessagingUsageResponse extends $pb.GeneratedMessage {
|
||||
void clearUsage() => $_clearField(1);
|
||||
}
|
||||
|
||||
class GetMessagingPeriodUsageRequest extends $pb.GeneratedMessage {
|
||||
factory GetMessagingPeriodUsageRequest({
|
||||
$core.String? projectID,
|
||||
$core.String? from,
|
||||
$core.String? to,
|
||||
}) {
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (from != null) result.from = from;
|
||||
if (to != null) result.to = to;
|
||||
return result;
|
||||
}
|
||||
|
||||
GetMessagingPeriodUsageRequest._();
|
||||
|
||||
factory GetMessagingPeriodUsageRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetMessagingPeriodUsageRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetMessagingPeriodUsageRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'From', protoName: 'From')
|
||||
..aOS(3, _omitFieldNames ? '' : 'To', protoName: 'To')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetMessagingPeriodUsageRequest clone() => GetMessagingPeriodUsageRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
GetMessagingPeriodUsageRequest copyWith(void Function(GetMessagingPeriodUsageRequest) updates) => super.copyWith((message) => updates(message as GetMessagingPeriodUsageRequest)) as GetMessagingPeriodUsageRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetMessagingPeriodUsageRequest create() => GetMessagingPeriodUsageRequest._();
|
||||
@$core.override
|
||||
GetMessagingPeriodUsageRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetMessagingPeriodUsageRequest> createRepeated() => $pb.PbList<GetMessagingPeriodUsageRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetMessagingPeriodUsageRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetMessagingPeriodUsageRequest>(create);
|
||||
static GetMessagingPeriodUsageRequest? _defaultInstance;
|
||||
|
||||
@$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);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get from => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set from($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasFrom() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearFrom() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get to => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set to($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTo() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearTo() => $_clearField(3);
|
||||
}
|
||||
|
||||
class IsMessagingMaxUsageReachedRequest extends $pb.GeneratedMessage {
|
||||
factory IsMessagingMaxUsageReachedRequest({
|
||||
$1.RequestProjectHeader? header,
|
||||
|
||||
Reference in New Issue
Block a user