full access, freq+bol11

This commit is contained in:
boufni95 2024-10-04 16:47:01 +00:00
parent 1049586646
commit 0dd79eecf6
6 changed files with 57 additions and 27 deletions

View file

@ -531,12 +531,14 @@ type DebitRule_rule struct {
type LiveDebitRequest_debit_type string
const (
FREQUENCY LiveDebitRequest_debit_type = "frequency"
INVOICE LiveDebitRequest_debit_type = "invoice"
FREQUENCY LiveDebitRequest_debit_type = "frequency"
FULL_ACCESS LiveDebitRequest_debit_type = "full_access"
INVOICE LiveDebitRequest_debit_type = "invoice"
)
type LiveDebitRequest_debit struct {
Type LiveDebitRequest_debit_type `json:"type"`
Frequency *FrequencyRule `json:"frequency"`
Invoice *string `json:"invoice"`
Type LiveDebitRequest_debit_type `json:"type"`
Frequency *FrequencyRule `json:"frequency"`
Full_access *Empty `json:"full_access"`
Invoice *string `json:"invoice"`
}