json_api_client
json_api_client copied to clipboard
Build client libraries compliant with specification defined by jsonapi.org
Results
61
json_api_client issues
Sort by
recently updated
recently updated
newest added
``` class BillingAccount < JsonApiClient::Resource #internal class starts class Create < JsonApiClient::Resource property :billing_account_type, type: :string has_many :products, class_name: 'foo' def product_offerings=(items) #item._model is of type 'foo' self.products = items.map...