| Name | Type | Description | Notes |
|---|---|---|---|
| credit_memo | CreditMemoEntityPrefix | ||
| debit_memo | DebitMemoEntityPrefix | ||
| invoice | InvoiceEntityPrefix | ||
| name | str | The name of the sequence set to configure for billing documents, payments, and refunds. | |
| sequence_set_number | str | The number of the sequence set. | [optional] |
| payment | PaymentEntityPrefix | [optional] | |
| refund | RefundEntityPrefix | [optional] |
from zuora_sdk.models.create_sequence_set_request import CreateSequenceSetRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateSequenceSetRequest from a JSON string
create_sequence_set_request_instance = CreateSequenceSetRequest.from_json(json)
# print the JSON string representation of the object
print(CreateSequenceSetRequest.to_json())
# convert the object into a dict
create_sequence_set_request_dict = create_sequence_set_request_instance.to_dict()
# create an instance of CreateSequenceSetRequest from a dict
create_sequence_set_request_from_dict = CreateSequenceSetRequest.from_dict(create_sequence_set_request_dict)