|  Developer

isOnce

  • Triggering when the particular date has come. The specific time, day, month and year should be set. The Gregorian Calendar is used.
Edit
Field Type Required Description
blockOptions.method.args.time string + Argument declaration of time. The value should be in block with name. The time is string. The time format is “hh:mm” in 24-hour clock format. Represents 24 hours time type.
blockOptions.method.args.day string Argument declaration of day. The value should be in block with name. The day is integer number. The possible values are 1..31 range but should not be more than last day of month. Represents int type.
blockOptions.method.args.month string + Argument declaration of month. The value should be in block with name. The month is integer number. The possible values are 1..12. Represents int type.
blockOptions.method.args.year string + Argument declaration of year. The value should be in block with name. The year is integer number. Represents int type.
Edit
				
					"when" : [{ 
    "blockOptions":{ 
        "method":{ 
            "args":{ 
                "time": "time",
                "day": "day",
                "month": "month",
                "year": "year"
            },
            "name":"isOnce"
        }
    },
    "blockType":"when",
    "fields":[ 
        { 
            "name": "time",
            "type": "24_hours_time",
            "value": "10:20"
        },
        { 
            "name": "day",
            "type": "int",
            "value": 5
        },
        { 
            "name": "month",
            "type": "int",
            "value": 12
        },
        { 
            "name": "year",
            "type": "int",
            "value": 2019
        },
    ]
}]