| 291 | |
| 292 | |
| 293 | class FamilyCode(Object): |
| 294 | def __init__(self): |
| 295 | self.accountID = "" |
| 296 | self.familyCodeStr = "" |
| 297 | |
| 298 | def __str__(self): |
| 299 | return f"AccountId: {self.accountID}, FamilyCodeStr: {self.familyCodeStr}" |
| 300 | |
| 301 | |
| 302 | class PriceIncrement(Object): |
no outgoing calls
no test coverage detected