[][src]Struct stellar_toml::Documentation

pub struct Documentation {
    pub org_name: Option<String>,
    pub org_dba: Option<String>,
    pub org_url: Option<Uri>,
    pub org_logo: Option<Uri>,
    pub org_description: Option<String>,
    pub org_physical_address: Option<String>,
    pub org_physical_address_attestation: Option<Uri>,
    pub org_phone_number: Option<String>,
    pub org_phone_number_attestation: Option<Uri>,
    pub org_keybase: Option<String>,
    pub org_twitter: Option<String>,
    pub org_github: Option<String>,
    pub org_official_email: Option<String>,
    pub org_licensing_authority: Option<String>,
    pub org_license_type: Option<String>,
    pub org_license_number: Option<String>,
}

This section contains information about an organization.

Fields

org_name: Option<String>

Legal name of your organization.

org_dba: Option<String>

(may not apply) DBA of your organization.

org_url: Option<Uri>

Your organization's official URL. Your stellar.toml must be hosted on the same domain.

A PNG image of your organization's logo on a transparent background.

org_description: Option<String>

Short description of your organization.

org_physical_address: Option<String>

Physical address for your organization.

org_physical_address_attestation: Option<Uri>

URL on the same domain as your org_url that contains an image or pdf official document attesting to your physical address.

It must list your org_name or org_dba as the party at the address. Only documents from an official third party are acceptable. E.g. a utility bill, mail from a financial institution, or business license.

org_phone_number: Option<String>

Your organization's phone number in E.164 format, e.g. +14155552671.

org_phone_number_attestation: Option<Uri>

URL on the same domain as your org_url that contains an image or pdf of a phone bill showing both the phone number and your organization's name.

org_keybase: Option<String>

A Keybase account name for your organization.

Should contain proof of ownership of any public online accounts you list here, including your organization's domain.

org_twitter: Option<String>

Your organization's Twitter account.

org_github: Option<String>

Your organization's Github account.

org_official_email: Option<String>

An email where clients can contact your organization. Must be hosted at your org_url domain.

org_licensing_authority: Option<String>

Name of the authority or agency that licensed your organization, if applicable.

org_license_type: Option<String>

Type of financial or other license your organization holds, if applicable.

org_license_number: Option<String>

Official license number of your organization, if applicable.

Trait Implementations

impl Clone for Documentation[src]

impl Debug for Documentation[src]

impl<'de> Deserialize<'de> for Documentation[src]

impl Serialize for Documentation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.