module Kucoin::Rest::Private::Invitations

Public Instance Methods

invitation_count(options: {}) click to toggle source
# File lib/kucoin/rest/private/invitations.rb, line 6
def invitation_count(options: {})
  options.merge!(authenticate: true)
  get("/referrer/descendant/count", options: options)&.fetch("data", {})
end
promotion_reward(options: {}) click to toggle source
# File lib/kucoin/rest/private/invitations.rb, line 11
def promotion_reward(options: {})
  options.merge!(authenticate: true)
  get("/account/promotion/info", options: options)&.fetch("data", {})
end
promotion_summary(options: {}) click to toggle source
# File lib/kucoin/rest/private/invitations.rb, line 16
def promotion_summary(options: {})
  options.merge!(authenticate: true)
  get("/account/promotion/sum", options: options)&.fetch("data", {})
end