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

SetTokenURL() public method

Set the token URL.
if any argument is null/empty string
public SetTokenURL ( string tokenURL ) : OAuthFlowBuilder
tokenURL string the token Url
return OAuthFlowBuilder
        public virtual OAuthFlowBuilder SetTokenURL(string tokenURL)
        {
            Util.ThrowIfNull(tokenURL);

            this.tokenURL = tokenURL;
            return this;
        }