From 6e7f44b1a580329010169fff65266a33df69590c Mon Sep 17 00:00:00 2001 From: Donovan Allen Date: Fri, 13 Oct 2023 11:42:21 -0700 Subject: [PATCH] Update links to point to new redocly (#73) * Update links to point to new redocly * Update additional references to smartsheet.com/developer --- src/main/java/com/smartsheet/api/models/AlternateEmail.java | 3 ++- src/main/java/com/smartsheet/api/models/AutoNumberFormat.java | 2 +- src/main/java/com/smartsheet/api/models/Cell.java | 4 ++-- .../java/com/smartsheet/api/models/ImageWidgetContent.java | 2 +- src/main/java/com/smartsheet/api/models/ReportPublish.java | 4 ++-- .../java/com/smartsheet/api/models/enums/AccessLevel.java | 2 +- .../java/com/smartsheet/api/models/enums/AccessScope.java | 2 +- src/main/java/com/smartsheet/api/models/format/Format.java | 2 +- 8 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/smartsheet/api/models/AlternateEmail.java b/src/main/java/com/smartsheet/api/models/AlternateEmail.java index 5c839e83..87960c9c 100644 --- a/src/main/java/com/smartsheet/api/models/AlternateEmail.java +++ b/src/main/java/com/smartsheet/api/models/AlternateEmail.java @@ -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 Get Alternate Email endpoint */ public class AlternateEmail { diff --git a/src/main/java/com/smartsheet/api/models/AutoNumberFormat.java b/src/main/java/com/smartsheet/api/models/AutoNumberFormat.java index 37da0b82..a6f0582e 100644 --- a/src/main/java/com/smartsheet/api/models/AutoNumberFormat.java +++ b/src/main/java/com/smartsheet/api/models/AutoNumberFormat.java @@ -18,7 +18,7 @@ /** * Represents the AutoNumberFormat object. It describes how the the System Column type of "AUTO_NUMBER" is auto-generated - * @see Auto Number Format API Documentation + * @see Auto Number Format API Documentation * @see Auto Number Format Help */ public class AutoNumberFormat { diff --git a/src/main/java/com/smartsheet/api/models/Cell.java b/src/main/java/com/smartsheet/api/models/Cell.java index 58df2830..ec5128c0 100644 --- a/src/main/java/com/smartsheet/api/models/Cell.java +++ b/src/main/java/com/smartsheet/api/models/Cell.java @@ -279,7 +279,7 @@ public Cell setFormula(String formula) { * Gets the strict value for this cell. * * @return the strict - * @see Column Types + * @see Column Types */ public Boolean getStrict() { return strict; @@ -289,7 +289,7 @@ public Boolean getStrict() { * Sets the strict formatting rule for this cell. * * @param strict the new strict - * @see Column Types + * @see Column Types */ public Cell setStrict(Boolean strict) { this.strict = strict; diff --git a/src/main/java/com/smartsheet/api/models/ImageWidgetContent.java b/src/main/java/com/smartsheet/api/models/ImageWidgetContent.java index 74bc9ab9..ca84cf67 100644 --- a/src/main/java/com/smartsheet/api/models/ImageWidgetContent.java +++ b/src/main/java/com/smartsheet/api/models/ImageWidgetContent.java @@ -33,7 +33,7 @@ public class ImageWidgetContent implements WidgetContent { /** * Format Descriptor - * @see FormatDescriptor + * @see FormatDescriptor */ private Format format; diff --git a/src/main/java/com/smartsheet/api/models/ReportPublish.java b/src/main/java/com/smartsheet/api/models/ReportPublish.java index ebca487b..9b473166 100644 --- a/src/main/java/com/smartsheet/api/models/ReportPublish.java +++ b/src/main/java/com/smartsheet/api/models/ReportPublish.java @@ -17,8 +17,8 @@ package com.smartsheet.api.models; /** - * The ReportPublish object - * @see Publish Object + * The ReportPublish object. Retruned by endpoints such as the + * @see get sheet publish status */ public class ReportPublish { diff --git a/src/main/java/com/smartsheet/api/models/enums/AccessLevel.java b/src/main/java/com/smartsheet/api/models/enums/AccessLevel.java index 19761aed..89e2cbc5 100644 --- a/src/main/java/com/smartsheet/api/models/enums/AccessLevel.java +++ b/src/main/java/com/smartsheet/api/models/enums/AccessLevel.java @@ -18,7 +18,7 @@ /** * Represents access levels that users can have. - * @see Access Level Help + * @see Access Level Help */ public enum AccessLevel { VIEWER, diff --git a/src/main/java/com/smartsheet/api/models/enums/AccessScope.java b/src/main/java/com/smartsheet/api/models/enums/AccessScope.java index 450812bd..339aa4d1 100644 --- a/src/main/java/com/smartsheet/api/models/enums/AccessScope.java +++ b/src/main/java/com/smartsheet/api/models/enums/AccessScope.java @@ -18,7 +18,7 @@ /** * Represents the type of access that is granted on a given sheet. - * @see Access Scopes Help + * @see Access Scopes Help */ public enum AccessScope { ADMIN_SHEETS, diff --git a/src/main/java/com/smartsheet/api/models/format/Format.java b/src/main/java/com/smartsheet/api/models/format/Format.java index 7b0060c9..2aeb0fa1 100644 --- a/src/main/java/com/smartsheet/api/models/format/Format.java +++ b/src/main/java/com/smartsheet/api/models/format/Format.java @@ -40,7 +40,7 @@ public class Format { * Constructs a {@link Format} object using the format string provided by the Smartsheet API. *

* The format of the string is a comma separated list. See - * http://www.smartsheet.com/developers/api-documentation#h.mf6r2e3k3ftb + * https://smartsheet.redoc.ly/#section/API-Basics/Formatting * for details * @param original the original */