def fallback_intent():
    return alexa_response_builder.simple_statement(
        "Sorry, I do not understand the command."
    )  # here also don't use FallbackIntent
def help_intent():
    return alexa_response_builder.simple_statement(
        "You want help")  # same here don't use CancelIntent
def stop_intent():
    return alexa_response_builder.simple_statement(
        "You want to stop")  # here also don't use StopIntent
def cancel_intent():
    return alexa_response_builder.simple_statement(
        "You want to cancel"
    )  # don't use CancelIntent as title it causes code reference error during certification