'use strict'; const requestEventMin = { _type: 'oadrRequestEvent', requestId: '2233', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', }; const requestEventMax = { _type: 'oadrRequestEvent', requestId: '2233', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', replyLimit: '2', }; const createdEventMin1 = { _type: 'oadrCreatedEvent', responseCode: '200', responseRequestId: '336f7e47b92eefe985ec', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', eventResponses: [], }; const createdEventMin2 = { _type: 'oadrCreatedEvent', responseCode: '200', responseRequestId: '336f7e47b92eefe985ec', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', eventResponses: [ { responseCode: '200', responseRequestId: '336f7e47b92eefe985ec', optType: 'optIn', eventId: 'a2fa542eca8d4e829ff5c0f0c8e68710', modificationNumber: 2, }, ], }; const createdEventMax = { _type: 'oadrCreatedEvent', responseCode: '200', responseDescription: 'OK', responseRequestId: '336f7e47b92eefe985ec', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', eventResponses: [ { responseCode: '200', responseDescription: 'OK', responseRequestId: '336f7e47b92eefe985ec', optType: 'optIn', eventId: 'a2fa542eca8d4e829ff5c0f0c8e68710', modificationNumber: 2, }, ], }; const createdEventInvalidEventId1 = { _type: 'oadrCreatedEvent', responseCode: '200', responseDescription: 'OK', responseRequestId: '336f7e47b92eefe985ec', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', eventResponses: [ { responseCode: '200', responseDescription: 'OK', responseRequestId: '336f7e47b92eefe985ec', optType: 'optIn', eventId: 'invalid', modificationNumber: 0, }, ], }; const createdEventOldModificationNumber1 = { _type: 'oadrCreatedEvent', responseCode: '200', responseDescription: 'OK', responseRequestId: '336f7e47b92eefe985ec', venId: 'D8:1D:4B:20:5A:65:4C:50:32:FA', eventResponses: [ { responseCode: '200', responseDescription: 'OK', responseRequestId: '336f7e47b92eefe985ec', optType: 'optIn', eventId: 'a2fa542eca8d4e829ff5c0f0c8e68710', modificationNumber: 0, }, ], }; module.exports = { createdEventMin1, createdEventMin2, createdEventMax, createdEventInvalidEventId1, createdEventOldModificationNumber1, requestEventMin, requestEventMax, };