ProductMemberRequest
Properties
| Name |
Type |
Description |
Notes |
| product |
int |
|
[optional] |
| user |
int |
|
[optional] |
| role |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.product_member_request import ProductMemberRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ProductMemberRequest from a JSON string
product_member_request_instance = ProductMemberRequest.from_json(json)
# print the JSON string representation of the object
print(ProductMemberRequest.to_json())
# convert the object into a dict
product_member_request_dict = product_member_request_instance.to_dict()
# create an instance of ProductMemberRequest from a dict
product_member_request_from_dict = ProductMemberRequest.from_dict(product_member_request_dict)
[Back to Model list] [Back to API list] [Back to README]