#pragma once // FW #include "Compatible.h" // Project #include "MAdjustRequestsBase.h" using namespace Gui; namespace Model { /*! * \brief The MUIUFPauseResumeRequest class * \details The The ID_UIUFPauseResumeRequest data model * * | MSG | CAN ID | Type | Ack | Src | Dst | Description | * |:----:|:------:|:------:|:---:|:---:|:---:|:-----------: | * |0x4700| 0x041 | 1 Hz | N | UI | All | ID_UIUFPauseResumeRequest data | * * | Payload || * | || * | #1:(U32) | \ref Data::mPayload | */ class MUIUFPauseResumeRequest : public MModel { public: quint32 mPayload; // disabled coco begin validated : Has been validated manually. // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({ mPayload, }); } // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString(QString("UFPauseResumeRequest"), vParameters); } static Can::Can_Id canid () { return Can::eChlid_UI_TD; } }; } typedef Model::MUIUFPauseResumeRequest UIUFPauseResumeRequestData;