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

com.qiniu.rtc.model.WatermarksParam Maven / Gradle / Ivy

There is a newer version: 7.17.0
Show newest version
// codebeat:disable[TOO_MANY_IVARS]
package com.qiniu.rtc.model;

import lombok.Data;

import java.util.List;

@Data
public class WatermarksParam {

    private List watermarks;

    @Data
    public static class Watermarks {
        private String url;
        private int x;
        private int y;
        private int w;
        private int h;

        /**
         * @see com.qiniu.rtc.model.StretchModeEnum
         */
        private String stretchMode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy