Module Values.TurkeyAdditionalInfoSource

Additional tax information associated with your TRN in Turkey.

Sourcetype nonrec t = {
  1. industries : Industries.t option;
    (*

    The industry information that tells the Tax Settings API if you're subject to additional withholding taxes. This information required for business-to-business (B2B) customers. This information is conditionally mandatory for B2B customers who are subject to KDV tax.

    *)
  2. kepEmailId : KepEmailId.t option;
    (*

    The Registered Electronic Mail (REM) that is used to send notarized communication. This parameter is optional for business-to-business (B2B) and business-to-government (B2G) customers. It's not required for business-to-consumer (B2C) customers.

    *)
  3. secondaryTaxId : SecondaryTaxId.t option;
    (*

    Secondary tax ID (“harcama birimi VKN”si”). If one isn't provided, we will use your VKN as the secondary ID.

    *)
  4. taxOffice : TaxOffice.t option;
    (*

    The tax office where you're registered. You can enter this information as a string. The Tax Settings API will add this information to your invoice. This parameter is required for business-to-business (B2B) and business-to-government customers. It's not required for business-to-consumer (B2C) customers.

    *)
}
Sourceval make : ?industries:??? -> ?kepEmailId:??? -> ?secondaryTaxId:??? -> ?taxOffice:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of KepEmailId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t