Packages

An elixir client for the Orchestre National d'Île-de-France public API

Retired package: Release invalid - The underlying public API does not exist anymore.

Current section

Files

Jump to
ondix lib entities concert.ex
Raw

lib/entities/concert.ex

defmodule Ondix.Entities.Concert do
def get(id, relations) do
Ondix.Client.getOne("saisons/public/concerts/#{id}", relations)
end
def list(clauses, page) do
Ondix.Client.getList("saisons/public/concerts", clauses, page)
end
def next() do
Ondix.Client.fetch("saisons/public/concerts/next")
end
end