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

com.apitable.client.api.model.field.property.LastModifiedTimeFieldProperty Maven / Gradle / Ivy

The newest version!
package com.apitable.client.api.model.field.property;

import java.util.List;

import com.apitable.client.api.model.field.property.option.CollectTypeEnum;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

public class LastModifiedTimeFieldProperty extends CreatedTimeFieldProperty {

    private CollectTypeEnum collectType;

    @JsonInclude(Include.NON_EMPTY)
    private List fieldIdCollection;

    public CollectTypeEnum getCollectType() {
        return collectType;
    }

    public void setCollectType(CollectTypeEnum collectType) {
        this.collectType = collectType;
    }

    public List getFieldIdCollection() {
        return fieldIdCollection;
    }

    public void setFieldIdCollection(List fieldIdCollection) {
        this.fieldIdCollection = fieldIdCollection;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy