|
6 | 6 | from pyocf.enums.accrualperiodtype import AccrualPeriodType |
7 | 7 | from pyocf.enums.addresstype import AddressType |
8 | 8 | from pyocf.enums.allocationtype import AllocationType |
| 9 | +from pyocf.enums.authorizedshares import AuthorizedShares |
9 | 10 | from pyocf.enums.compensationtype import CompensationType |
10 | 11 | from pyocf.enums.compoundingtype import CompoundingType |
11 | 12 | from pyocf.enums.conversionmechanismtype import ConversionMechanismType |
|
22 | 23 | from pyocf.enums.parentsecuritytype import ParentSecurityType |
23 | 24 | from pyocf.enums.periodtype import PeriodType |
24 | 25 | from pyocf.enums.phonetype import PhoneType |
| 26 | +from pyocf.enums.quantitysourcetype import QuantitySourceType |
25 | 27 | from pyocf.enums.roundingtype import RoundingType |
26 | 28 | from pyocf.enums.stakeholderrelationshiptype import StakeholderRelationshipType |
27 | 29 | from pyocf.enums.stakeholdertype import StakeholderType |
|
31 | 33 | StockPlanCancellationBehaviorType, |
32 | 34 | ) |
33 | 35 | from pyocf.enums.terminationwindowtype import TerminationWindowType |
| 36 | +from pyocf.enums.valuationbasedformulatype import ValuationBasedFormulaType |
34 | 37 | from pyocf.enums.valuationtype import ValuationType |
35 | 38 | from pyocf.enums.vestingdayofmonth import VestingDayOfMonth |
36 | 39 | from pyocf.enums.vestingtriggertype import VestingTriggerType |
| 40 | +from pyocf.files.documentsfile import DocumentsFile |
| 41 | +from pyocf.files.financingsfile import FinancingsFile |
37 | 42 | from pyocf.files.ocfmanifestfile import OCFManifestFile |
38 | 43 | from pyocf.files.stakeholdersfile import StakeholdersFile |
39 | 44 | from pyocf.files.stockclassesfile import StockClassesFile |
|
42 | 47 | from pyocf.files.transactionsfile import TransactionsFile |
43 | 48 | from pyocf.files.valuationsfile import ValuationsFile |
44 | 49 | from pyocf.files.vestingtermsfile import VestingTermsFile |
| 50 | +from pyocf.objects.document import Document |
| 51 | +from pyocf.objects.financing import Financing |
45 | 52 | from pyocf.objects.issuer import Issuer |
46 | 53 | from pyocf.objects.stakeholder import Stakeholder |
47 | 54 | from pyocf.objects.stockclass import StockClass |
|
58 | 65 | ) |
59 | 66 | from pyocf.objects.transactions.acceptance.stockacceptance import StockAcceptance |
60 | 67 | from pyocf.objects.transactions.acceptance.warrantacceptance import WarrantAcceptance |
| 68 | +from pyocf.objects.transactions.adjustment.issuerauthorizedsharesadjustment import ( |
| 69 | + IssuerAuthorizedSharesAdjustment, |
| 70 | +) |
61 | 71 | from pyocf.objects.transactions.adjustment.stockclassauthorizedsharesadjustment import ( |
62 | 72 | StockClassAuthorizedSharesAdjustment, |
63 | 73 | ) |
|
142 | 152 | from pyocf.primitives.objects.transactions.conversion.conversion import Conversion |
143 | 153 | from pyocf.primitives.objects.transactions.exercise.exercise import Exercise |
144 | 154 | from pyocf.primitives.objects.transactions.issuance.issuance import Issuance |
| 155 | +from pyocf.primitives.objects.transactions.issuertransaction import IssuerTransaction |
145 | 156 | from pyocf.primitives.objects.transactions.reissuance.reissuance import Reissuance |
146 | 157 | from pyocf.primitives.objects.transactions.release.release import Release |
147 | 158 | from pyocf.primitives.objects.transactions.repurchase.repurchase import Repurchase |
|
194 | 205 | from pyocf.types.conversion_mechanisms.safeconversionmechanism import ( |
195 | 206 | SAFEConversionMechanism, |
196 | 207 | ) |
| 208 | +from pyocf.types.conversion_mechanisms.sharepricebasedconversionmechanism import ( |
| 209 | + SharePriceBasedConversionMechanism, |
| 210 | +) |
| 211 | +from pyocf.types.conversion_mechanisms.valuationbasedconversionmechanism import ( |
| 212 | + ValuationBasedConversionMechanism, |
| 213 | +) |
197 | 214 | from pyocf.types.conversion_rights.convertibleconversionright import ( |
198 | 215 | ConvertibleConversionRight, |
199 | 216 | ) |
|
230 | 247 | from pyocf.types.monetary import Monetary |
231 | 248 | from pyocf.types.name import Name |
232 | 249 | from pyocf.types.numeric import Numeric |
| 250 | +from pyocf.types.objectreference import ObjectReference |
233 | 251 | from pyocf.types.percentage import Percentage |
234 | 252 | from pyocf.types.phone import Phone |
235 | 253 | from pyocf.types.ratio import Ratio |
|
238 | 256 | from pyocf.types.stockparent import StockParent |
239 | 257 | from pyocf.types.taxid import TaxID |
240 | 258 | from pyocf.types.terminationwindow import TerminationWindow |
| 259 | +from pyocf.types.vesting import Vesting |
241 | 260 | from pyocf.types.vesting.vestingcondition import VestingCondition |
242 | 261 | from pyocf.types.vesting.vestingconditionportion import VestingConditionPortion |
243 | 262 | from pyocf.types.vesting.vestingeventtrigger import VestingEventTrigger |
|
257 | 276 | Address, |
258 | 277 | AddressType, |
259 | 278 | AllocationType, |
| 279 | + AuthorizedShares, |
260 | 280 | AutomaticConversionOnConditionTrigger, |
261 | 281 | AutomaticConversionOnDateTrigger, |
262 | 282 | Cancellation, |
|
288 | 308 | CustomConversionMechanism, |
289 | 309 | Date, |
290 | 310 | DayCountType, |
| 311 | + Document, |
| 312 | + DocumentsFile, |
291 | 313 | ElectiveConversionAtWillTrigger, |
292 | 314 | ElectiveConversionInDateRangeTrigger, |
293 | 315 | ElectiveConversionOnConditionTrigger, |
|
304 | 326 | File, |
305 | 327 | FileObject, |
306 | 328 | FileType, |
| 329 | + Financing, |
| 330 | + FinancingsFile, |
307 | 331 | FixedAmountConversionMechanism, |
308 | 332 | InterestPayoutType, |
309 | 333 | InterestRate, |
310 | 334 | Issuance, |
311 | 335 | Issuer, |
| 336 | + IssuerAuthorizedSharesAdjustment, |
| 337 | + IssuerTransaction, |
312 | 338 | Md5, |
313 | 339 | Monetary, |
314 | 340 | Name, |
315 | 341 | NoteConversionMechanism, |
316 | 342 | Numeric, |
317 | 343 | OCFManifestFile, |
318 | 344 | Object, |
| 345 | + ObjectReference, |
319 | 346 | ObjectType, |
320 | 347 | OptionType, |
321 | 348 | ParentSecurityType, |
|
331 | 358 | PlanSecurityRelease, |
332 | 359 | PlanSecurityRetraction, |
333 | 360 | PlanSecurityTransfer, |
| 361 | + QuantitySourceType, |
334 | 362 | Ratio, |
335 | 363 | RatioConversionMechanism, |
336 | 364 | Reissuance, |
|
343 | 371 | SecurityExemption, |
344 | 372 | SecurityTransaction, |
345 | 373 | ShareNumberRange, |
| 374 | + SharePriceBasedConversionMechanism, |
346 | 375 | Stakeholder, |
347 | 376 | StakeholderRelationshipType, |
348 | 377 | StakeholderType, |
|
381 | 410 | Transfer, |
382 | 411 | UnspecifiedConversionTrigger, |
383 | 412 | Valuation, |
| 413 | + ValuationBasedConversionMechanism, |
| 414 | + ValuationBasedFormulaType, |
384 | 415 | ValuationType, |
385 | 416 | ValuationsFile, |
| 417 | + Vesting, |
386 | 418 | VestingAcceleration, |
387 | 419 | VestingCondition, |
388 | 420 | VestingConditionPortion, |
|
0 commit comments