class Pinnacle::CompanyDetails

def initialize(name:, category:, address:, ein:, description:, brand_color:, logo_url:, hero_url:,

Returns:
  • (Pinnacle::CompanyDetails) -

Parameters:
  • additional_properties (OpenStruct) -- Additional properties unmapped to the current class definition
  • hero_url (String) -- URL of the company's hero image.
  • logo_url (String) -- URL of the company logo.
  • brand_color (String) -- The brand color in hex format, must pass a contrast ratio of at least 4.5:1 with
  • description (String) -- A description of the company.
  • ein (String) -- The EIN (Employer Identification Number) of the company.
  • address (String) -- The address of the company.
  • category (Pinnacle::CompanyCategory) -- The category of the company.
  • name (String) -- The name of the company.
def initialize(name:, category:, address:, ein:, description:, brand_color:, logo_url:, hero_url:,
               additional_properties: nil)
  @name = name
  @category = category
  @address = address
  @ein = ein
  @description = description
  @brand_color = brand_color
  @logo_url = logo_url
  @hero_url = hero_url
  @additional_properties = additional_properties
  @_field_set = {
    "name": name,
    "category": category,
    "address": address,
    "ein": ein,
    "description": description,
    "brandColor": brand_color,
    "logoUrl": logo_url,
    "heroUrl": hero_url
  }
end