All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.backendless.rt.data.RelationStatus Maven / Gradle / Ivy

The newest version!
package com.backendless.rt.data;


import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

import java.util.List;

@Getter
@Setter
@EqualsAndHashCode
@ToString
public class RelationStatus
{
  /**
   * this is the objectId of the object which is the parent in the relation
   */
  private String parentObjectId;

  /**
   * this is set to true if the children where assigned through a where clause in the child table
   */
  private boolean isConditional;

  /**
   * if isConditional is true, this has the value which was used to identify the children
   */
  private String whereClause;

  /**
   * if isConditional is false, this contains a collection of child objectId values
   */
  private List children;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy