Date

data class Date(val year: Int = 0, val month: Int = 0, val day: Int = 0, val unknownFields: Map<Int, UnknownField> = emptyMap()) : Message

Constructors

Link copied to clipboard
constructor(year: Int = 0, month: Int = 0, day: Int = 0, unknownFields: Map<Int, UnknownField> = emptyMap())

Types

Link copied to clipboard
object Companion : Message.Companion<Date>

Properties

Link copied to clipboard
val day: Int = 0
Link copied to clipboard
open override val descriptor: MessageDescriptor<Date>
Link copied to clipboard
val month: Int = 0
Link copied to clipboard
open override val protoSize: Int
Link copied to clipboard
open override val unknownFields: Map<Int, UnknownField>
Link copied to clipboard
val year: Int = 0

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun plus(other: Message?): Date