lib/marketing/query.ex
defmodule Dealcloud.Marketing.Query do
@type t :: %__MODULE__{
contactId: integer,
communicationId: integer,
fields: any
}
defstruct contactId: 1, communicationId: 2, fields: nil
end
defmodule Dealcloud.Marketing.Query do
@type t :: %__MODULE__{
contactId: integer,
communicationId: integer,
fields: any
}
defstruct contactId: 1, communicationId: 2, fields: nil
end