Class NetworkProgram.Builder
-
- All Implemented Interfaces:
public final class NetworkProgram.BuilderA builder for NetworkProgram.
-
-
Method Summary
-
-
Method Detail
-
token
final NetworkProgram.Builder token(String token)
Lithic-generated unique identifier for the program
-
token
final NetworkProgram.Builder token(JsonField<String> token)
Sets Builder.token to an arbitrary JSON value.
You should usually call Builder.token with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
defaultProductCode
final NetworkProgram.Builder defaultProductCode(String defaultProductCode)
Network product ID associated with this program.
-
defaultProductCode
final NetworkProgram.Builder defaultProductCode(JsonField<String> defaultProductCode)
Sets Builder.defaultProductCode to an arbitrary JSON value.
You should usually call Builder.defaultProductCode with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final NetworkProgram.Builder name(String name)
The name of the network program.
-
name
final NetworkProgram.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
registeredProgramIdentificationNumber
final NetworkProgram.Builder registeredProgramIdentificationNumber(String registeredProgramIdentificationNumber)
RPIN value assigned by the network.
-
registeredProgramIdentificationNumber
final NetworkProgram.Builder registeredProgramIdentificationNumber(JsonField<String> registeredProgramIdentificationNumber)
Sets Builder.registeredProgramIdentificationNumber to an arbitrary JSON value.
You should usually call Builder.registeredProgramIdentificationNumber with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final NetworkProgram.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final NetworkProgram.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final NetworkProgram.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final NetworkProgram.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final NetworkProgram.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final NetworkProgram build()
Returns an immutable instance of NetworkProgram.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.token() .defaultProductCode() .name() .registeredProgramIdentificationNumber()
-
-
-
-