Smartsheet.Api.OAuth.OAuthFlowBuilder.SetAuthorizationURL C# (CSharp) Method

SetAuthorizationURL() public method

Set the authorization URL.
if any argument is null/empty string
public SetAuthorizationURL ( string authorizationURL ) : OAuthFlowBuilder
authorizationURL string the authorization URL
return OAuthFlowBuilder
        public virtual OAuthFlowBuilder SetAuthorizationURL(string authorizationURL)
        {
            Util.ThrowIfNull(authorizationURL);

            this.authorizationURL = authorizationURL;
            return this;
        }