limj
2023-10-24 93652435728de839582440eefd5122c281181d35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Quintiq file version 2.0
#parent: #root
Method Update (
  String calendarid,
  String calendartype,
  String category,
  String datasource,
  Duration duration,
  Boolean isallday,
  Boolean isdefault,
  Boolean isrecurring,
  Boolean issoftdeleted,
  Real partialcapacity,
  Boolean patterndaily_iseveryweekday,
  Number patternmonthlyday,
  String patternmonthlydayofweek,
  Boolean patternmonthlyisday,
  String patternmonthlyweekofmonth,
  String patterntype,
  String patternweeklyweekday,
  Number patternyearlyday,
  String patternyearlydayofweek,
  Boolean patternyearlyisday,
  Number patternyearlymonth,
  String patternyearlyweekofmonth,
  Number recurrenceinterval,
  Duration starttimeofday,
  String subject,
  String type
)
{
  Description: 'Update attributes for IOEvent'
  TextBody:
  [*
    this.CalendarID( calendarid );
    this.CalendarType( calendartype );
    this.Category( category );
    this.DataSource( datasource );
    this.Duration( duration ); 
    this.IsAllDay( isallday ); 
    this.IsDefault( isdefault ); 
    this.IsRecurring( isrecurring );
    this.IsSoftDeleted( issoftdeleted );
    this.PartialCapacity( partialcapacity );
    this.PatternDaily_IsEveryWeekday( patterndaily_iseveryweekday );
    this.PatternMonthly_Day( patternmonthlyday );
    this.PatternMonthly_DayOfWeek( patternmonthlydayofweek );
    this.PatternMonthly_IsDay( patternmonthlyisday ); 
    this.PatternMonthly_WeekOfMonth( patternmonthlyweekofmonth );
    this.PatternType( patterntype );
    this.PatternWeekly_Weekdays( patternweeklyweekday ); 
    this.PatternYearly_Day( patternyearlyday );
    this.PatternYearly_DayOfWeek( patternyearlydayofweek );
    this.PatternYearly_IsDay( patternyearlyisday );
    this.PatternYearly_Month( patternyearlymonth );
    this.PatternYearly_WeekOfMonth( patternyearlyweekofmonth );
    this.RecurrenceInterval( recurrenceinterval );
    this.StartTimeOfDay( starttimeofday ); 
    this.Subject( subject );
    this.Type( type );
  *]
}