Skip to content

Commit

Permalink
Update links to point to new redocly (#73)
Browse files Browse the repository at this point in the history
* Update links to point to new redocly

* Update additional references to smartsheet.com/developer
  • Loading branch information
DonoA authored Oct 13, 2023
1 parent 1c8b4ee commit 6e7f44b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion src/main/java/com/smartsheet/api/models/AlternateEmail.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
package com.smartsheet.api.models;

/**
* The AlternateEmail object (see: http://smartsheet-platform.github.io/api-docs/?shell#alternateemail-object)
* The AlternateEmail object, retruned by endpoints like
* the <a href="https://smartsheet.redoc.ly/tag/alternateEmailAddress#operation/get-alternate-email">Get Alternate Email endpoint</a>
*/
public class AlternateEmail {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* Represents the AutoNumberFormat object. It describes how the the System Column type of "AUTO_NUMBER" is auto-generated
* @see <a href="http://www.smartsheet.com/developers/api-documentation#h.xu85ymcuwnmq">Auto Number Format API Documentation</a>
* @see <a href="https://smartsheet.redoc.ly/tag/commonObjects/#section/AutoNumberFormat-Object">Auto Number Format API Documentation</a>
* @see <a href="http://help.smartsheet.com/customer/portal/articles/1108408-auto-numbering">Auto Number Format Help</a>
*/
public class AutoNumberFormat {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/smartsheet/api/models/Cell.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public Cell setFormula(String formula) {
* Gets the strict value for this cell.
*
* @return the strict
* @see <a href="http://www.smartsheet.com/developers/api-documentation#h.lay2yj3x1pp8">Column Types</a>
* @see <a href="https://smartsheet.redoc.ly/tag/columnsRelated">Column Types</a>
*/
public Boolean getStrict() {
return strict;
Expand All @@ -289,7 +289,7 @@ public Boolean getStrict() {
* Sets the strict formatting rule for this cell.
*
* @param strict the new strict
* @see <a href="http://www.smartsheet.com/developers/api-documentation#h.lay2yj3x1pp8">Column Types</a>
* @see <a href="https://smartsheet.redoc.ly/tag/columnsRelated">Column Types</a>
*/
public Cell setStrict(Boolean strict) {
this.strict = strict;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class ImageWidgetContent implements WidgetContent {

/**
* Format Descriptor
* @see <a href="https://smartsheet-platform.github.io/api-docs/?ruby#formatting">FormatDescriptor</a>
* @see <a href="https://smartsheet.redoc.ly/#section/API-Basics/Formatting">FormatDescriptor</a>
*/
private Format format;

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/smartsheet/api/models/ReportPublish.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
package com.smartsheet.api.models;

/**
* The ReportPublish object
* @see <a href="http://smartsheet-platform.github.io/api-docs/?java#reportpublish-object">Publish Object</a>
* The ReportPublish object. Retruned by endpoints such as the
* @see <a href="https://smartsheet.redoc.ly/tag/sheets#operation/get-sheetPublish">get sheet publish status</a>
*/
public class ReportPublish {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* Represents access levels that users can have.
* @see <a href="http://www.smartsheet.com/developers/api-documentation#h.umfgm4xt25dq">Access Level Help</a>
* @see <a href="https://smartsheet.redoc.ly/#section/Security/Access-Levels">Access Level Help</a>
*/
public enum AccessLevel {
VIEWER,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* Represents the type of access that is granted on a given sheet.
* @see <a href="http://www.smartsheet.com/developers/api-documentation#h.89hb3ivv7eum">Access Scopes Help</a>
* @see <a href="https://smartsheet.redoc.ly/#section/OAuth-Walkthrough/Access-Scopes">Access Scopes Help</a>
*/
public enum AccessScope {
ADMIN_SHEETS,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/smartsheet/api/models/format/Format.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Format {
* Constructs a {@link Format} object using the format string provided by the Smartsheet API.
* <p>
* The format of the string is a comma separated list. See
* <a href="http://www.smartsheet.com/developers/api-documentation#h.mf6r2e3k3ftb">http://www.smartsheet.com/developers/api-documentation#h.mf6r2e3k3ftb</a>
* <a href="https://smartsheet.redoc.ly/#section/API-Basics/Formatting">https://smartsheet.redoc.ly/#section/API-Basics/Formatting</a>
* for details
* @param original the original
*/
Expand Down

0 comments on commit 6e7f44b

Please sign in to comment.