class HelpScout::Customer::Website

Customer::Website developer.helpscout.net/objects/customer/website/

Name   Type    Example                   Notes
id     Int     5584                      Unique identifier
value  String  http://www.somewhere.com

Attributes

id[R]
value[R]

Public Class Methods

new(object) click to toggle source

Creates a new Customer::Website object from a Hash of attributes

# File lib/helpscout/models.rb, line 812
def initialize(object)
  @id = object["id"]
  @value = object["value"]
end