# MyDataMyConsent::Error

# Properties

Name Type Description Notes
type ErrorType [optional]
title String [optional]
status Integer [optional]
code Integer [optional][readonly]
detail String [optional][readonly]
trace_id String [optional][readonly]
errors Array<String> [optional][readonly]

# Example

require 'mydatamyconsent'

instance = MyDataMyConsent::Error.new(
  type: null,
  title: null,
  status: null,
  code: null,
  detail: null,
  trace_id: null,
  errors: null
)
1
2
3
4
5
6
7
8
9
10
11
Last Updated: 6/19/2022, 7:27:56 PM