public static Result <PushV3Res> pushByAreas(string workNo, string title, string content, PushAreas pushAreas) { return(pushTaskV3(new PushWorkBuilder() .setTargetByAreas(workNo, title, content, pushAreas) .build())); }
public PushWorkBuilder setTargetByAreas(string workNo, string title, string content, PushAreas pushAreas) { this.fillParams(workNo, title, content); push.pushTarget.target = TARGET_AREAS; push.pushTarget.pushAreas = pushAreas; return(this); }