class Azure::ServiceFabric::V6_5_0_36::Models::UploadChunkRange

Information about which portion of the file to upload.

Attributes

end_position[RW]

@return [String] The end position of the portion of the file. It's represented by the number of bytes.

start_position[RW]

@return [String] The start position of the portion of the file. It's represented by the number of bytes.

Public Class Methods

mapper() click to toggle source

Mapper for UploadChunkRange class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/6.5.0.36/generated/azure_service_fabric/models/upload_chunk_range.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'UploadChunkRange',
    type: {
      name: 'Composite',
      class_name: 'UploadChunkRange',
      model_properties: {
        start_position: {
          client_side_validation: true,
          required: false,
          serialized_name: 'StartPosition',
          type: {
            name: 'String'
          }
        },
        end_position: {
          client_side_validation: true,
          required: false,
          serialized_name: 'EndPosition',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end