var request = new MapiCalendarGetRequest
{
FileName = "calendar.msg",
Folder = "calendar/location/on/storage",
Storage = "First Storage"
};
MapiCalendarGetRequest request = Models.mapiCalendarGetRequest()
.fileName("calendar.msg")
.folder("calendar/location/on/storage")
.storage("First Storage")
.build();
request = models.MapiCalendarGetRequest(
file_name='calendar.msg',
folder='calendar/location/on/storage',
storage='First Storage')
request = MapiCalendarGetRequest.new(
file_name: 'calendar.msg',
folder: 'calendar/location/on/storage',
storage: 'First Storage')
let request = Models.MapiCalendarGetRequest()
.fileName('calendar.msg')
.folder('calendar/location/on/storage')
.storage('First Storage')
.build();
$request = Models::MapiCalendarGetRequest()
->file_name('calendar.msg')
->folder('calendar/location/on/storage')
->storage('First Storage')
->build();