Program due date created
Event generated when a program due date has been created.
Type: object
Domain: balance
Event: program_due_date_created
Version: 1
|
program_due_date_id required
Description: Program due date ID
Type: integer
Example:
9832195123
day required
Description: The date which will be base to generate calendars
Type: integer
Example:
13
active required
Description: Flag which indicates if the program due date is enable or not
Type: boolean
Example:
true
grace_period_days
Description: Custom number of days between cutting and due date
Type: integer
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Program due date created",
"description": "Event generated when a program due date has been created.",
"required": [
"program_due_date_id",
"day",
"active"
],
"properties": {
"program_due_date_id": {
"type": "integer",
"description": "Program due date ID",
"examples": [
9832195123
]
},
"day": {
"type": "integer",
"description": "The date which will be base to generate calendars",
"examples": [
13
]
},
"active": {
"type": "boolean",
"description": "Flag which indicates if the program due date is enable or not",
"examples": [
true
]
},
"grace_period_days": {
"type": "integer",
"description": "Custom number of days between cutting and due date",
"examples": []
}
}
}
Updated 23 days ago