communication_planning.modelsΒΆ
ClassesΒΆ
How often to communicate with stakeholders. |
|
Comprehensive plan for stakeholder communication. |
|
Level of influence a stakeholder has. |
|
Level of interest a stakeholder has. |
|
Individual stakeholder in a project or initiative. |
|
Types of stakeholders in projects or initiatives. |
Module ContentsΒΆ
- class communication_planning.models.CommunicationFrequencyΒΆ
-
How often to communicate with stakeholders.
- AS_NEEDED = 'as_needed'ΒΆ
- BI_WEEKLY = 'bi_weekly'ΒΆ
- DAILY = 'daily'ΒΆ
- MONTHLY = 'monthly'ΒΆ
- QUARTERLY = 'quarterly'ΒΆ
- WEEKLY = 'weekly'ΒΆ
- class communication_planning.models.CommunicationPlan(/, **data: Any)ΒΆ
Bases:
pydantic.BaseModelComprehensive plan for stakeholder communication.
- stakeholders: list[Stakeholder] = NoneΒΆ
- class communication_planning.models.InfluenceLevelΒΆ
-
Level of influence a stakeholder has.
- HIGH = 'high'ΒΆ
- LOW = 'low'ΒΆ
- MEDIUM = 'medium'ΒΆ
- class communication_planning.models.InterestLevelΒΆ
-
Level of interest a stakeholder has.
- HIGH = 'high'ΒΆ
- LOW = 'low'ΒΆ
- MEDIUM = 'medium'ΒΆ
- class communication_planning.models.Stakeholder(/, **data: Any)ΒΆ
Bases:
pydantic.BaseModelIndividual stakeholder in a project or initiative.
- communication_frequency: CommunicationFrequency = NoneΒΆ
- influence_level: InfluenceLevel = NoneΒΆ
- interest_level: InterestLevel = NoneΒΆ
- stakeholder_type: StakeholderType = NoneΒΆ
- class communication_planning.models.StakeholderTypeΒΆ
-
Types of stakeholders in projects or initiatives.
- DECISION_MAKER = 'decision_maker'ΒΆ
- IMPLEMENTER = 'implementer'ΒΆ
- INFORMEE = 'informee'ΒΆ
- REVIEWER = 'reviewer'ΒΆ
- SPONSOR = 'sponsor'ΒΆ
- SUBJECT_MATTER_EXPERT = 'subject_matter_expert'ΒΆ
- USER = 'user'ΒΆ