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

com.cybozu.kintone.client.model.app.GetAppsRequest Maven / Gradle / Ivy

/**
 * MIT License
 *
 * Copyright (c) 2018 Cybozu
 * https://github.com/kintone/kintone-java-sdk/blob/master/LICENSE
 */

package com.cybozu.kintone.client.model.app;

import java.util.ArrayList;

public class GetAppsRequest {

    private ArrayList ids;
    private ArrayList codes;
    private String name;
    private ArrayList spaceIds;
    private Integer offset;
    private Integer limit;

    public GetAppsRequest(ArrayList ids, ArrayList codes, String name, ArrayList spaceIds, Integer offset,
            Integer limit) {
        this.ids = ids;
        this.codes = codes;
        this.name = name;
        this.spaceIds = spaceIds;
        this.offset = offset;
        this.limit = limit;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy