# CreateBufferArgs
Arguments to be passed to createBuffer
NOTE
This is an abstract type. Any object of this structure can be used where this type is used.
# Properties
# byteOrder
byteOrder :Number
The byte order of this buffer.
Default: The OS native byte order is used by default. See <Titanium.Codec.getNativeByteOrder
# length
length :Number
The length of the buffer.
Default: 0, unless `value` is specified, in which case the length of the encoded data is used.
# value
value :String | Number
An initial value which will be encoded and placed in the buffer. If value is a Number, type must also be set. (this is simply a convenient way of calling encodeString or encodeNumber and placing the encoded value in the returned buffer.)