The National_Team
object contains information related to a Neon Fundraise national team (see here for more).
Availability: The National_Team
object is generally accessed from the Team
and Fundraiser
objects and will generally be available wherever those are available.
Attributes: The National_Team
object has the following attributes:
- National_Team.Name
- National_Team.Description
- National_Team.Member_Count
- National_Team.Team_Count
- National_Team.Goal_Amount
- National_Team.Amount_Raised
- National_Team.Amount_To_Goal
- National_Team.Fundraising_Page
National_Team.Name
Returns the national team name. Use with string filter natural_language
when using in a sentence to prepend "Team" to team names that don't already have the word in their name:
National Team: {{ National_Team.Name }}
Join {{ National_Team.Name | natural_language }} today!
If team name is "Awesome Fundraisers", the output will be:
National Team: Awesome Fundraisers
Join Team Awesome Fundraisers today!
If team name is "Team Awesome", the output will be:
Team: Team Awesome
Join Team Awesome today!
National_Team.Description
Returns the description of a national team.
National_Team.Member_Count
Returns the number of members associated with a national team across an organization.
National_Team.Team_Count
Returns the number of teams associated with a national team across an organization.
National_Team.Goal_Amount
Returns the national team's goal amount. Use a money
filter to return the value in a monetary format:
{{ National_Team.Goal_Amount | money }}
$100,000
National_Team.Amount_Raised
Returns the amount raised by the national team, which consist of donations made to team members and directly to local team pages. Use a money
filter to return the value in a monetary format:
{{ National_Team.Amount_Raised | money }}
$19,362
National_Team.Amount_To_Goal
Returns the difference between the national team's total raised and goal amount. Use a money
filter to return the value in a monetary format:
{{ National_Team.Amount_To_Goal | money }}
$80,638
National_Team.Fundraising_Page
Returns a link that directs to the national team's fundraising page.