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
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod Create ( 
 |    String quintiqid, 
 |    String name, 
 |    String description, 
 |    String title, 
 |    String email, 
 |    String location, 
 |    String phone, 
 |    Boolean isactive, 
 |    Boolean hasupdateprofile 
 |  ) as owning SWF_CreateUpdateUserMessage 
 |  { 
 |    TextBody: 
 |    [* 
 |      msg := construct( SWF_CreateUpdateUserMessage 
 |                      , UserQuintiqID := quintiqid 
 |                      , UserName := name 
 |                      , UserDescription := description 
 |                      , UserTitle := title 
 |                      , UserEmail := email 
 |                      , UserLocation := location 
 |                      , UserPhone := phone 
 |                      , UserIsActive := isactive 
 |                      , UserHasUpdatedProfile := hasupdateprofile                 
 |                      ); 
 |       
 |      return &msg; 
 |    *] 
 |  } 
 |  
  |