Equinoxe_cohttp.OrgaA module to interact with Equinix organization.
type config = {id : id; |
name : string; |
account_id : string; |
website : string; |
maintenance_email : string; |
max_projects : int; |
}Type that represents an organization configuration.
val id_of_string : string -> idid_of_string str creates an id from a string from the Equinix API.
val to_string : config -> stringto_string config returns a string representing an organization configuration.
get_from t id returns an organization configuration associated with the id given.
get_all t return all the organization associated with the t api token.
val pp : config -> unitpp config pretty-prints an organization configuration.