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

smartsheet / smartsheet-java-sdk / #61

04 Dec 2025 01:00PM UTC coverage: 60.098% (-0.06%) from 60.156%
#61

push

github

web-flow
Merge pull request #155 from smartsheet/add-user-reactivate-deactivate-endpoints-support

Add user reactivate deactivate endpoints support

0 of 4 new or added lines in 1 file covered. (0.0%)

93 existing lines in 4 files now uncovered.

4395 of 7313 relevant lines covered (60.1%)

0.6 hits per line

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

62.5
/src/main/java/com/smartsheet/api/models/UserPlan.java
1
/*
2
 * Copyright (C) 2025 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
import java.time.ZonedDateTime;
20
import com.smartsheet.api.models.enums.SeatType;
21

22
/**
23
 * Represents the UserPlan object.
24
 */
25
public class UserPlan {
1✔
26
    private Long planId;
27
    private SeatType seatType;
28
    private ZonedDateTime seatTypeLastChangedAt;
29
    private ZonedDateTime provisionalExpirationDate;
30
    private Boolean isInternal;
31

32
    public Long getPlanId() {
33
        return planId;
1✔
34
    }
35

36
    public void setPlanId(Long planId) {
37
        this.planId = planId;
1✔
38
    }
1✔
39

40
    public SeatType getSeatType() {
UNCOV
41
        return seatType;
×
42
    }
43

44
    public void setSeatType(SeatType seatType) {
45
        this.seatType = seatType;
1✔
46
    }
1✔
47

48
    public ZonedDateTime getSeatTypeLastChangedAt() {
UNCOV
49
        return seatTypeLastChangedAt;
×
50
    }
51

52
    public void setSeatTypeLastChangedAt(ZonedDateTime seatTypeLastChangedAt) {
53
        this.seatTypeLastChangedAt = seatTypeLastChangedAt;
1✔
54
    }
1✔
55

56
    public ZonedDateTime getProvisionalExpirationDate() {
UNCOV
57
        return provisionalExpirationDate;
×
58
    }
59

60
    public void setProvisionalExpirationDate(ZonedDateTime provisionalExpirationDate) {
UNCOV
61
        this.provisionalExpirationDate = provisionalExpirationDate;
×
UNCOV
62
    }
×
63

64
    public Boolean getIsInternal() {
UNCOV
65
        return isInternal;
×
66
    }
67

68
    public void setIsInternal(Boolean isInternal) {
69
        this.isInternal = isInternal;
1✔
70
    }
1✔
71
}
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