ProductMember
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| product |
int |
|
[optional] |
| user |
int |
|
[optional] |
| role |
int |
|
[optional] |
| prefetch |
AssetMemberPrefetch |
|
[optional] |
Example
from defectdojo_api_generated.models.product_member import ProductMember
# TODO update the JSON string below
json = "{}"
# create an instance of ProductMember from a JSON string
product_member_instance = ProductMember.from_json(json)
# print the JSON string representation of the object
print(ProductMember.to_json())
# convert the object into a dict
product_member_dict = product_member_instance.to_dict()
# create an instance of ProductMember from a dict
product_member_from_dict = ProductMember.from_dict(product_member_dict)
[Back to Model list] [Back to API list] [Back to README]