# MyDataMyConsent::DataProvider
# Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | ||
| name | String | ||
| category | String | ||
| logo_url | String | [optional] | |
| website | String | [optional] | |
| support_email | String | [optional] | |
| help_line_number | String | [optional] | |
| privacy_policy | String | [optional] | |
| term_of_service | String | [optional] | |
| data_protection_officer | DataProtectionOfficer | [optional] | |
| supported_document_types | Array<String> | ||
| supported_account_types | Array<String> | [optional] |
# Example
require 'mydatamyconsent'
instance = MyDataMyConsent::DataProvider.new(
id: null,
name: null,
category: null,
logo_url: null,
website: null,
support_email: null,
help_line_number: null,
privacy_policy: null,
term_of_service: null,
data_protection_officer: null,
supported_document_types: null,
supported_account_types: null
)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16