class OvercastAPI::Infraction
Attributes
date[R]
expires[R]
punished[R]
punisher[R]
reason[R]
type[R]
Public Class Methods
new(punisher, punished, reason, type, expires, date)
click to toggle source
# File lib/overcast_api.rb, line 188 def initialize(punisher, punished, reason, type, expires, date) @punisher = punisher @punished = punished @reason = reason @type = type @expires = expires @date = date end