Table of Contents

Class Summary

Namespace
Temporalio.Api.Cloud.Usage.V1
Assembly
Temporalio.dll
public sealed class Summary : IMessage<Summary>, IEquatable<Summary>, IDeepCloneable<Summary>, IBufferMessage, IMessage
Inheritance
Summary
Implements
IMessage<Summary>
IDeepCloneable<Summary>
IBufferMessage
IMessage
Inherited Members

Constructors

Summary()

public Summary()

Summary(Summary)

public Summary(Summary other)

Parameters

other Summary

Fields

EndTimeFieldNumber

Field number for the "end_time" field.

public const int EndTimeFieldNumber = 2

Field Value

int

IncompleteFieldNumber

Field number for the "incomplete" field.

public const int IncompleteFieldNumber = 4

Field Value

int

RecordGroupsFieldNumber

Field number for the "record_groups" field.

public const int RecordGroupsFieldNumber = 3

Field Value

int

StartTimeFieldNumber

Field number for the "start_time" field.

public const int StartTimeFieldNumber = 1

Field Value

int

Properties

Descriptor

public static MessageDescriptor Descriptor { get; }

Property Value

MessageDescriptor

EndTime

End of UTC day for now (exclusive)

public Timestamp EndTime { get; set; }

Property Value

Timestamp

Incomplete

True if data for given time window is not fully available yet (e.g. delays) When true, records for the given time range could still be added/updated in the future (until false)

public bool Incomplete { get; set; }

Property Value

bool

Parser

public static MessageParser<Summary> Parser { get; }

Property Value

MessageParser<Summary>

RecordGroups

Records grouped by namespace

public RepeatedField<RecordGroup> RecordGroups { get; }

Property Value

RepeatedField<RecordGroup>

StartTime

Start of UTC day for now (inclusive)

public Timestamp StartTime { get; set; }

Property Value

Timestamp

Methods

CalculateSize()

Calculates the size of this message in Protocol Buffer wire format, in bytes.

public int CalculateSize()

Returns

int

The number of bytes required to write this message to a coded output stream.

Clone()

Creates a deep clone of this object.

public Summary Clone()

Returns

Summary

A deep clone of this object.

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object other)

Parameters

other object

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

Equals(Summary)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(Summary other)

Parameters

other Summary

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

MergeFrom(CodedInputStream)

Merges the data from the specified coded input stream with the current message.

public void MergeFrom(CodedInputStream input)

Parameters

input CodedInputStream

Remarks

See the user guide for precise merge semantics.

MergeFrom(Summary)

Merges the given message into this one.

public void MergeFrom(Summary other)

Parameters

other Summary

Remarks

See the user guide for precise merge semantics.

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

WriteTo(CodedOutputStream)

Writes the data to the given coded output stream.

public void WriteTo(CodedOutputStream output)

Parameters

output CodedOutputStream

Coded output stream to write the data to. Must not be null.