Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 469 Bytes

ApiErrorUnprocessableEntity.md

File metadata and controls

24 lines (18 loc) · 469 Bytes

LagoAPI::ApiErrorUnprocessableEntity

Properties

Name Type Description Notes
status Integer
error String
code String
error_details Object

Example

require 'lago_ruby'

instance = LagoAPI::ApiErrorUnprocessableEntity.new(
  status: 422,
  error: Unprocessable entity,
  code: validation_errors,
  error_details: null
)