class EveOnline::ESI::Models::MailRecipient

Public Instance Methods

as_json() click to toggle source
# File lib/eve_online/esi/models/mail_recipient.rb, line 7
def as_json
  {
    recipient_id: recipient_id,
    recipient_type: recipient_type
  }
end
recipient_id() click to toggle source
# File lib/eve_online/esi/models/mail_recipient.rb, line 14
def recipient_id
  options["recipient_id"]
end
recipient_type() click to toggle source
# File lib/eve_online/esi/models/mail_recipient.rb, line 18
def recipient_type
  options["recipient_type"]
end