ex_heroku_client v0.3.0 Heroku.AccountFeature

Summary

Functions

Calls GET /account/features/#{account_feature_identity}

Calls GET /account/features

Calls PATCH /account/features/#{account_feature_identity}

Functions

get(account_feature_identity)

Calls GET /account/features/#{account_feature_identity}

index()

Calls GET /account/features

update(account_feature_identity, params)

Calls PATCH /account/features/#{account_feature_identity}

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "enabled": {
      "description": "whether or not account feature has been enabled",
      "example": true,
      "readOnly": false,
      "type": [
        "boolean"
      ]
    }
  },
  "required": [
    "enabled"
  ],
  "type": [
    "object"
  ]
}