Table of Contents

Class SenderIdentityRequest

Namespace
BoldSign.Model
Assembly
BoldSign.Api.dll

The sender identity request.

[DataContract]
public class SenderIdentityRequest
Inheritance
SenderIdentityRequest
Inherited Members

Constructors

SenderIdentityRequest(string, string, NotificationSettings, string, Uri)

Initializes a new instance of the SenderIdentityRequest class.

public SenderIdentityRequest(string name, string email, NotificationSettings notificationSettings, string brandId = null, Uri redirectUrl = null)

Parameters

name string

Gets or sets name.

email string

Gets or sets email.

notificationSettings NotificationSettings

Gets or sets notification settings.

brandId string

Gets or sets brand Id.

redirectUrl Uri

Gets or sets redirect url.

Properties

BrandId

Gets or sets the brand Id.

[DataMember(Name = "brandId", EmitDefaultValue = true)]
public string BrandId { get; set; }

Property Value

string

Email

Gets or sets the email.

[Required]
[DataMember(Name = "email", EmitDefaultValue = true)]
public string Email { get; set; }

Property Value

string

Name

Gets or sets name.

[Required]
[DataMember(Name = "name", EmitDefaultValue = true)]
public string Name { get; set; }

Property Value

string

NotificationSettings

Gets or sets the notification settings.

[DataMember(Name = "notificationSettings")]
public NotificationSettings NotificationSettings { get; set; }

Property Value

NotificationSettings

RedirectUrl

Gets or sets the redirect URL.

[DataMember(Name = "redirectUrl", EmitDefaultValue = true)]
public Uri RedirectUrl { get; set; }

Property Value

Uri

Methods

ToJson()

Returns the JSON string presentation of the object.

public virtual string ToJson()

Returns

string

JSON string presentation of the object.