Should be accessed from GithubAPI::get_milestone
.
github :: Milestone :: closed_at=
Close time as String (if any).github :: Milestone :: closed_issues
Count of closed issues linked to this milestone.github :: Milestone :: closed_issues=
Count of closed issues linked to this milestone.github :: Milestone :: created_at=
Creation time as String.github :: Milestone :: description=
Milestone long description.github :: Milestone :: open_issues
Count of opened issues linked to this milestone.github :: Milestone :: open_issues=
Count of opened issues linked to this milestone.github :: Milestone :: updated_at
Last update time as String (if any).github :: Milestone :: updated_at=
Last update time as String (if any).github $ Milestone :: core_serialize_to
Actual serialization ofself
to serializer
github $ Milestone :: from_deserializer
Create an instance of this class from thedeserializer
serialization :: Serializable :: accept_json_serializer
Refinable service to customize the serialization of this class to JSONserialization :: Serializable :: accept_msgpack_attribute_counter
Hook to customize the behavior of theAttributeCounter
serialization :: Serializable :: accept_msgpack_serializer
Hook to customize the serialization of this class to MessagePackserialization :: Serializable :: add_to_bundle
Called by[]=
to dynamically choose the appropriate method according
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
github :: Milestone :: closed_at=
Close time as String (if any).github :: Milestone :: closed_issues
Count of closed issues linked to this milestone.github :: Milestone :: closed_issues=
Count of closed issues linked to this milestone.serialization :: Serializable :: core_serialize_to
Actual serialization ofself
to serializer
github :: Milestone :: created_at=
Creation time as String.core :: Object :: defaultinit
github :: Milestone :: description=
Milestone long description.serialization :: Serializable :: from_deserializer
Create an instance of this class from thedeserializer
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
serialization :: Serializable :: msgpack_extra_array_items
Hook to request a larger than usual metadata arraygithub :: Milestone :: open_issues
Count of opened issues linked to this milestone.github :: Milestone :: open_issues=
Count of opened issues linked to this milestone.core :: Object :: output_class_name
Display class name on stdout (debug only).serialization :: Serializable :: serialize_msgpack
Serializeself
to MessagePack bytes
serialization :: Serializable :: serialize_to
Serializeself
to serializer
serialization :: Serializable :: serialize_to_json
Serializeself
to JSON
serialization :: Serializable :: to_pretty_json
Serializeself
to plain pretty JSON
github :: Milestone :: updated_at
Last update time as String (if any).github :: Milestone :: updated_at=
Last update time as String (if any).Serializer::serialize
# A Github milestone.
#
# Should be accessed from `GithubAPI::get_milestone`.
#
# See <https://developer.github.com/v3/issues/milestones/>.
class Milestone
serialize
# The milestone id on Github.
var number: nullable Int = null is writable
# Milestone title.
var title: String is writable
# Milestone long description.
var description: nullable String is writable
# Count of opened issues linked to this milestone.
var open_issues: nullable Int = null is writable
# Count of closed issues linked to this milestone.
var closed_issues: nullable Int = null is writable
# Milestone state.
var state: nullable String is writable
# Creation time as String.
var created_at: nullable String is writable
# User that created this milestone.
var creator: nullable User is writable
# Due time as String (if any).
var due_on: nullable String is writable
# Last update time as String (if any).
var updated_at: nullable String is writable
# Close time as String (if any).
var closed_at: nullable String is writable
end
lib/github/api.nit:774,1--814,3