com.backendless.rt.data.RelationStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Provides access to Backendless API
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