Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
37080 amit 1
package com.spice.profitmandi.dao.service.biuedart;
2
 
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
5
 
6
import java.time.LocalDate;
7
import java.util.ArrayList;
8
import java.util.Date;
9
import java.util.List;
10
 
11
class Profile {
12
    @JsonProperty("LoginID")
13
    private String loginID = "";
14
 
15
    @JsonProperty("LicenceKey")
16
    private String licenceKey = "";
17
 
18
    @JsonProperty("Api_type")
19
    private String apiType = "";
20
 
21
    public String getLoginID() {
22
        return loginID;
23
    }
24
 
25
    public void setLoginID(String loginID) {
26
        this.loginID = loginID;
27
    }
28
 
29
    public String getLicenceKey() {
30
        return licenceKey;
31
    }
32
 
33
    public void setLicenceKey(String licenceKey) {
34
        this.licenceKey = licenceKey;
35
    }
36
 
37
    public String getApiType() {
38
        return apiType;
39
    }
40
 
41
    public void setApiType(String apiType) {
42
        this.apiType = apiType;
43
    }
44
 
45
    // Constructors, getters, and setters
46
}