Source code for ubii.proto.v1.topicData.timestamp_pb_plus

"""
@generated by codestare-proto-plus.  Do not edit manually!
"""
from builtins import (
    int,
)

from proto import (
    Field,
    INT32,
    INT64,
    module,
)

from proto.message import (
    Message,
)


__protobuf__ = module(
    package="ubii.proto.v1.topicData",
    marshal="ubii.proto.v1",
    manifest={
        "Timestamp",
    }
)


[docs]class Timestamp(Message): """ Attributes: seconds (proto.fields.Field): :obj:`~proto.fields.Field` of type :obj:`~proto.primitives.ProtoType.INT64` nanos (proto.fields.Field): :obj:`~proto.fields.Field` of type :obj:`~proto.primitives.ProtoType.INT32` millis (proto.fields.Field): :obj:`~proto.fields.Field` of type :obj:`~proto.primitives.ProtoType.INT64` """ seconds: int = Field( INT64, number=1, ) nanos: int = Field( INT32, number=2, ) millis: int = Field( INT64, number=3, )