View Javadoc
1   package com.kodexa.client.remote;
2   
3   import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4   import lombok.Data;
5   
6   /**
7    * An instance of a session in the Kodexa Cloud
8    * <p>
9    * A session is created using access tokens to allow you to set-up and the run either actions or pipelines
10   */
11  @Data
12  @JsonIgnoreProperties(ignoreUnknown = true)
13  public class CloudSession {
14  
15      /**
16       * The unique ID of the cloud session
17       */
18      private String id;
19  
20  }