summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/application/v4/model/CostResult.java
blob: c0ca5d91d3fb840f712326e6025592f23799ce12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yahoo.vespa.hosted.controller.api.application.v4.model;

import java.util.List;

/**
 * @author ogronnesby
 */
public class CostResult {
    private String month;
    private List<CostItem> items;

    public CostResult() {}

    public String getMonth() {
        return month;
    }

    public List<CostItem> getItems() {
        return items;
    }
}