001package com.plivo.api.models.node; 002 003import com.fasterxml.jackson.annotation.JsonInclude; 004 005@JsonInclude(JsonInclude.Include.NON_NULL) 006public class MultiPartyCall extends Node { 007 008 private String phloId; 009 private String nodeId; 010 private String nodeType; 011 private String name; 012 private String createdOn; 013 014 public static MultiPartyCallUpdater updater(String phloId, String id) { 015 return new MultiPartyCallUpdater(phloId, id); 016 } 017 018 public static MultiPartyCallGetter getter(String phloId, String id) { 019 return new MultiPartyCallGetter(phloId, id); 020 } 021 022 public MultiPartyCallUpdater updater() { 023 return MultiPartyCall.updater(this.phloId, this.nodeId); 024 } 025 026 @Override 027 public String getPhloId() { 028 return phloId; 029 } 030 031 public void setPhloId(String phloId) { 032 this.phloId = phloId; 033 } 034 035 @Override 036 public String getNodeId() { 037 return nodeId; 038 } 039 040 public void setNodeId(String nodeId) { 041 this.nodeId = nodeId; 042 } 043 044 @Override 045 public String getNodeType() { 046 return nodeType; 047 } 048 049 public void setNodeType(String nodeType) { 050 this.nodeType = nodeType; 051 } 052 053 public String getName() { 054 return name; 055 } 056 057 public void setName(String name) { 058 this.name = name; 059 } 060 061 public String getCreatedOn() { 062 return createdOn; 063 } 064 065 public void setCreatedOn(String createdOn) { 066 this.createdOn = createdOn; 067 } 068}