/// <summary> /// Initializes a new instance of the <see cref="EnableTransactionalConflict" /> class. /// </summary> /// <param name="errors">errors.</param> /// <param name="type">RFC for status code definitions.</param> /// <param name="title">Error title.</param> /// <param name="status">Status code.</param> /// <param name="detail">Error detail.</param> public EnableTransactionalConflict(ClientIsBeingEnabledErrors errors = default(ClientIsBeingEnabledErrors), string type = default(string), TitleEnum?title = default(TitleEnum?), int status = default(int), string detail = default(string)) { this.Errors = errors; this.Type = type; this.Title = title; this.Status = status; this.Detail = detail; }
/// <summary> /// Initializes a new instance of the <see cref="ClientIsBeingEnabled" /> class. /// </summary> /// <param name="errors">errors.</param> public ClientIsBeingEnabled(ClientIsBeingEnabledErrors errors = default(ClientIsBeingEnabledErrors)) { this.Errors = errors; }
/// <summary> /// Initializes a new instance of the <see cref="EnableTransactionalConflictsErrors" /> class. /// </summary> /// <param name="errors">errors.</param> public EnableTransactionalConflictsErrors(ClientIsBeingEnabledErrors errors = default(ClientIsBeingEnabledErrors)) { this.Errors = errors; }