/* Options: Date: 2024-12-29 02:13:58 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: CRMAccountCreateRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using regis.DynamicsCRM.Requests; namespace regis.DynamicsCRM.Requests { [Route("/DynamicsCRM/Account/Create", "POST")] public partial class CRMAccountCreateRequest : IReturn { public virtual int? regent_id { get; set; } public virtual string name { get; set; } public virtual string other_name { get; set; } public virtual string business_type { get; set; } public virtual string regent_friendly_church { get; set; } public virtual string educational_affiliation { get; set; } public virtual string reason_added { get; set; } public virtual string connection_to_regent { get; set; } public virtual string denomination { get; set; } public virtual string addr1 { get; set; } public virtual string addr2 { get; set; } public virtual string city { get; set; } public virtual string state { get; set; } public virtual string country { get; set; } public virtual string code { get; set; } public virtual string email { get; set; } public virtual string solicitation_method { get; set; } public virtual string solicitation_exceptions { get; set; } public virtual bool campaign_monitor_optin { get; set; } public virtual bool campaign_monitor_suppressed { get; set; } public virtual string campaign_monitor_lists { get; set; } public virtual string phone_home { get; set; } public virtual string phone_bus { get; set; } public virtual string phone_cell { get; set; } public virtual bool no_mail { get; set; } public virtual bool no_email { get; set; } public virtual bool no_bulk_email { get; set; } public virtual bool no_phone { get; set; } public virtual bool no_marketing_materials { get; set; } public virtual bool prefers_email { get; set; } public virtual bool prefers_phone { get; set; } public virtual string image_base64 { get; set; } public virtual string owning_username { get; set; } } }