Table of Contents

Class InvitationTemplateModelUpdate

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

Model for creating and updating an email invitation template

public class InvitationTemplateModelUpdate
Inheritance
InvitationTemplateModelUpdate
Derived
Inherited Members

Properties

Body

Body of the invitation

[JsonProperty("Body", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(2147483647)]
public string Body { get; set; }

Property Value

string

InvitationType

Invitation type.
1 = Invitation.
2 = Reminder.

[JsonProperty("InvitationType", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int InvitationType { get; set; }

Property Value

int

Name

Name of the invitation template

[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(150)]
public string Name { get; set; }

Property Value

string

Subject

Subject of the invitation

[JsonProperty("Subject", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(150)]
public string Subject { get; set; }

Property Value

string