Last change
on this file since 69 was 67, checked in by Bart Vastenhouw, 3 years ago |
Added SAOP and simplerunner to GeniusWebPython. Several minor fixes.
|
File size:
439 bytes
|
Rev | Line | |
---|
[67] | 1 | from geniusweb.actions.AbstractAction import AbstractAction
|
---|
| 2 | from geniusweb.actions.PartyId import PartyId
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | #@JsonTypeName("endnegotiation")
|
---|
| 6 | class EndNegotiation ( AbstractAction ):
|
---|
| 7 | '''
|
---|
| 8 | Indicates that a party turns away from the negotiation and.
|
---|
| 9 | '''
|
---|
| 10 | def __init__(self, actor:PartyId) :
|
---|
| 11 | super().__init__(actor);
|
---|
| 12 |
|
---|
| 13 |
|
---|
| 14 | def __repr__(self)->str:
|
---|
| 15 | return "EndNegotiation[" + repr(self.getActor()) + "]";
|
---|
| 16 | |
---|
Note:
See
TracBrowser
for help on using the repository browser.