Smartsheet.Api.Models.SheetPublish.PublishStatusBuilder.PublishStatusBuilder C# (CSharp) Method

PublishStatusBuilder() public method

Sets the required properties to publish a Sheet
public PublishStatusBuilder ( bool readOnlyLiteEnabled, bool readOnlyFullEnabled, bool readWriteEnabled, bool icalEnabled ) : System
readOnlyLiteEnabled bool Status of Read-Only HTML
readOnlyFullEnabled bool Status of Read-Only Full
readWriteEnabled bool Status of Edit by Anyone
icalEnabled bool Status of iCal
return System
            public PublishStatusBuilder(bool? readOnlyLiteEnabled, bool? readOnlyFullEnabled, bool? readWriteEnabled, bool? icalEnabled)
            {
                this.readOnlyLiteEnabled = readOnlyLiteEnabled;
                this.readOnlyFullEnabled = readOnlyFullEnabled;
                this.readWriteEnabled = readWriteEnabled;
                this.icalEnabled = icalEnabled;
            }