• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

smartsheet / smartsheet-java-sdk / #55

02 Oct 2024 07:40PM UTC coverage: 60.548% (+0.7%) from 59.836%
#55

push

github

web-flow
Release prep for 3.2.1 (#103)

4156 of 6864 relevant lines covered (60.55%)

0.61 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/smartsheet/api/models/WidgetHyperlink.java
1
/*
2
 * Copyright (C) 2024 Smartsheet
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16

17
package com.smartsheet.api.models;
18

19
public class WidgetHyperlink extends Hyperlink {
×
20

21
    /**
22
     * Specifies what happens when a user clicks the widget.
23
     */
24
    private String interactionType;
25

26
    /**
27
     * If interactionType = SMARTSHEET_ITEM this is the folder to open
28
     */
29
    private Long folderId;
30

31
    /**
32
     * If interactionType = SMARTSHEET_ITEM this is the workspace to open
33
     */
34
    private Long workspaceId;
35

36
    /**
37
     * Gets the interaction type
38
     *
39
     * @return the interaction type
40
     */
41
    public String getInteractionType() {
42
        return interactionType;
×
43
    }
44

45
    /**
46
     * Sets the interaction type
47
     */
48
    public WidgetHyperlink setInteractionType(String interactionType) {
49
        this.interactionType = interactionType;
×
50
        return this;
×
51
    }
52

53
    /**
54
     * Gets the folder ID - valid when interactionType == SMARTSHEET_ITEM
55
     *
56
     * @return the folder ID
57
     */
58
    public Long getFolderId() {
59
        return folderId;
×
60
    }
61

62
    /**
63
     * Sets the folder ID - valid when interactionType == SMARTSHEET_ITEM
64
     */
65
    public WidgetHyperlink setFolderId(Long folderId) {
66
        this.folderId = folderId;
×
67
        return this;
×
68
    }
69

70
    /**
71
     * Gets the workspace ID - valid when interactionType == SMARTSHEET_ITEM
72
     *
73
     * @return the workspace ID
74
     */
75
    public Long getWorkspaceId() {
76
        return workspaceId;
×
77
    }
78

79
    /**
80
     * Sets the workspace ID - valid when interactionType == SMARTSHEET_ITEM
81
     */
82
    public WidgetHyperlink setWorkspaceId(Long workspaceId) {
83
        this.workspaceId = workspaceId;
×
84
        return this;
×
85
    }
86
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc