github.com/kaisawind/go-swagger@v0.19.0/fixtures/goparsing/classification/transitive/mods/aliases.go (about)

     1  // Copyright 2015 go-swagger maintainers
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //    http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package mods
    16  
    17  import (
    18  	"time"
    19  
    20  	"github.com/go-openapi/strfmt"
    21  )
    22  
    23  // SomeStringsType is a type that refines []string
    24  // swagger:model modsSomeStringsType
    25  type SomeStringsType []string
    26  
    27  // SomeIntsType is a type that refines []int64
    28  // swagger:model modsSomeIntsType
    29  type SomeIntsType []int64
    30  
    31  // SomeTimesType is a type that refines time.Time
    32  // swagger:strfmt date-time
    33  // swagger:model modsSomeTimesType
    34  type SomeTimesType []time.Time
    35  
    36  // SomeTimedsType is a type that refines strfmt.DateTime
    37  // swagger:model modsSomeTimedsType
    38  type SomeTimedsType []strfmt.DateTime
    39  
    40  // SomePettedsType is a type that refines mods.Pet
    41  // swagger:model modsSomePettedsType
    42  type SomePettedsType []Pet
    43  
    44  // SomePettedsPtrType is a type that refines array of mods.Pet pointers
    45  // swagger:model modsSomePettedsPtrType
    46  type SomePettedsPtrType []*Pet
    47  
    48  // SomeStringType is a type that refines string
    49  // swagger:model modsSomeStringType
    50  type SomeStringType string
    51  
    52  // SomeIntType is a type that refines int64
    53  // swagger:model modsSomeIntType
    54  type SomeIntType int64
    55  
    56  // SomeTimeType is a type that refines time.Time
    57  // swagger:strfmt date-time
    58  // swagger:model modsSomeTimeType
    59  type SomeTimeType time.Time
    60  
    61  // SomeTimedType is a type that refines strfmt.DateTime
    62  // swagger:model modsSomeTimedType
    63  type SomeTimedType strfmt.DateTime
    64  
    65  // SomePettedType is a type that refines Pet
    66  // swagger:model modsSomePettedType
    67  type SomePettedType Pet