# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Procore.Model.Summary do @moduledoc """ Vendor Summary View """ @derive Jason.Encoder defstruct [ :id, :name, :active_users_count, :bids_count, :business_id, :company_vendor, :is_connected, :open_bids_count, :projects_count, :synced_to_erp ] @type t :: %__MODULE__{ :id => integer() | nil, :name => String.t() | nil, :active_users_count => integer() | nil, :bids_count => integer() | nil, :business_id => integer() | nil, :company_vendor => boolean() | nil, :is_connected => boolean() | nil, :open_bids_count => integer() | nil, :projects_count => integer() | nil, :synced_to_erp => boolean() | nil } def decode(value) do value end end