|
1 |
| -# NetworkId |
| 1 | +# NetworkID |
2 | 2 |
|
3 | 3 | ## Properties
|
4 | 4 |
|
5 | 5 | Name | Type | Description | Notes
|
6 | 6 | ------------ | ------------- | ------------- | -------------
|
7 |
| -**Id** | **string** | The network of the DLT being interacted with. | |
8 |
| -**LedgerType** | **string** | Enumerates the different ledger vendors and their major versions encoded within the name of the LedgerType. For example \"BESU_1X\" involves all of the [1.0.0;2.0.0) where 1.0.0 is included and anything up until, but not 2.0.0. See: https://stackoverflow.com/a/4396303/698470 for further explanation. | |
| 7 | +**Id** | Pointer to **string** | The network of the DLT being interacted with. | [optional] |
| 8 | +**Type** | Pointer to **string** | Enumerates the different ledger vendors and their major versions encoded within the name of the LedgerType. For example \"BESU_1X\" involves all of the [1.0.0;2.0.0) where 1.0.0 is included and anything up until, but not 2.0.0. See: https://stackoverflow.com/a/4396303/698470 for further explanation. | [optional] |
9 | 9 |
|
10 | 10 | ## Methods
|
11 | 11 |
|
12 |
| -### NewNetworkId |
| 12 | +### NewNetworkID |
13 | 13 |
|
14 |
| -`func NewNetworkId(id string, ledgerType string, ) *NetworkId` |
| 14 | +`func NewNetworkID() *NetworkID` |
15 | 15 |
|
16 |
| -NewNetworkId instantiates a new NetworkId object |
| 16 | +NewNetworkID instantiates a new NetworkID object |
17 | 17 | This constructor will assign default values to properties that have it defined,
|
18 | 18 | and makes sure properties required by API are set, but the set of arguments
|
19 | 19 | will change when the set of required properties is changed
|
20 | 20 |
|
21 |
| -### NewNetworkIdWithDefaults |
| 21 | +### NewNetworkIDWithDefaults |
22 | 22 |
|
23 |
| -`func NewNetworkIdWithDefaults() *NetworkId` |
| 23 | +`func NewNetworkIDWithDefaults() *NetworkID` |
24 | 24 |
|
25 |
| -NewNetworkIdWithDefaults instantiates a new NetworkId object |
| 25 | +NewNetworkIDWithDefaults instantiates a new NetworkID object |
26 | 26 | This constructor will only assign default values to properties that have it defined,
|
27 | 27 | but it doesn't guarantee that properties required by API are set
|
28 | 28 |
|
29 | 29 | ### GetId
|
30 | 30 |
|
31 |
| -`func (o *NetworkId) GetId() string` |
| 31 | +`func (o *NetworkID) GetId() string` |
32 | 32 |
|
33 | 33 | GetId returns the Id field if non-nil, zero value otherwise.
|
34 | 34 |
|
35 | 35 | ### GetIdOk
|
36 | 36 |
|
37 |
| -`func (o *NetworkId) GetIdOk() (*string, bool)` |
| 37 | +`func (o *NetworkID) GetIdOk() (*string, bool)` |
38 | 38 |
|
39 | 39 | GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
|
40 | 40 | and a boolean to check if the value has been set.
|
41 | 41 |
|
42 | 42 | ### SetId
|
43 | 43 |
|
44 |
| -`func (o *NetworkId) SetId(v string)` |
| 44 | +`func (o *NetworkID) SetId(v string)` |
45 | 45 |
|
46 | 46 | SetId sets Id field to given value.
|
47 | 47 |
|
| 48 | +### HasId |
48 | 49 |
|
49 |
| -### GetLedgerType |
| 50 | +`func (o *NetworkID) HasId() bool` |
50 | 51 |
|
51 |
| -`func (o *NetworkId) GetLedgerType() string` |
| 52 | +HasId returns a boolean if a field has been set. |
52 | 53 |
|
53 |
| -GetLedgerType returns the LedgerType field if non-nil, zero value otherwise. |
| 54 | +### GetType |
54 | 55 |
|
55 |
| -### GetLedgerTypeOk |
| 56 | +`func (o *NetworkID) GetType() string` |
56 | 57 |
|
57 |
| -`func (o *NetworkId) GetLedgerTypeOk() (*string, bool)` |
| 58 | +GetType returns the Type field if non-nil, zero value otherwise. |
58 | 59 |
|
59 |
| -GetLedgerTypeOk returns a tuple with the LedgerType field if it's non-nil, zero value otherwise |
| 60 | +### GetTypeOk |
| 61 | + |
| 62 | +`func (o *NetworkID) GetTypeOk() (*string, bool)` |
| 63 | + |
| 64 | +GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise |
60 | 65 | and a boolean to check if the value has been set.
|
61 | 66 |
|
62 |
| -### SetLedgerType |
| 67 | +### SetType |
| 68 | + |
| 69 | +`func (o *NetworkID) SetType(v string)` |
| 70 | + |
| 71 | +SetType sets Type field to given value. |
63 | 72 |
|
64 |
| -`func (o *NetworkId) SetLedgerType(v string)` |
| 73 | +### HasType |
65 | 74 |
|
66 |
| -SetLedgerType sets LedgerType field to given value. |
| 75 | +`func (o *NetworkID) HasType() bool` |
67 | 76 |
|
| 77 | +HasType returns a boolean if a field has been set. |
68 | 78 |
|
69 | 79 |
|
70 | 80 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
0 commit comments