Class GraphQLErrorLocationBuilder

java.lang.Object
com.commercetools.api.models.graph_ql.GraphQLErrorLocationBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<GraphQLErrorLocation>

public class GraphQLErrorLocationBuilder extends Object implements io.vrap.rmf.base.client.Builder<GraphQLErrorLocation>
GraphQLErrorLocationBuilder
Example to create an instance using the builder pattern

     GraphQLErrorLocation graphQLErrorLocation = GraphQLErrorLocation.builder()
             .line(1)
             .column(1)
             .build()