class Fastly::Customer

A Customer account

def billing_contact

The billing contact as a Fastly::User
#
def billing_contact
  get_user billing_contact_id
end

def get_user(id)

def get_user(id)
  id ? fetcher.get(User, id) : nil
end

def legal_contact

The legal contact as a Fastly::User
#
def legal_contact
  get_user legal_contact_id
end

def owner

The account owner as a Fastly::User
#
def owner
  get_user owner_id
end

def security_contact

The security contact as a Fastly::User
#
def security_contact
  get_user security_contact_id
end

def technical_contact

The technical contact as a Fastly::User
#
def technical_contact
  get_user technical_contact_id
end